body {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    font-family: math;
}

.home-footer {
    font-family: 'Roboto', sans-serif;
}

nav {
    font-family: 'Roboto', monospace;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
}

#myBtn:hover {
    background: #ddd;
    color: black;
}

.clear-view {
    opacity: 0.65;
}

.text-black {
    color: black !important;
}

.space-green {
    background: #68EB58;
    opacity: 0.35;
}

.footer-bg {
    background: rgb(89, 97, 96);
    opacity: 0.5;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 60px;
    min-width: 100%;
    min-height: 100%;
    opacity: 0.31;
}

@media (max-width: 990px) {
    #myVideo {
        position: unset !important;
        right: unset;
        bottom: unset;
        top: unset;
        min-width: unset;
        min-height: unset;
        opacity: 0.31;
    }

    .content {
        position: unset !important;
    }
}

.content {
    position: fixed;
    bottom: 0;
    background: rgba(104, 235, 88, 0.05);
    width: 100%;
    padding: 20px;
    opacity: 0.96;
}

.footer-socials-opacity {
    opacity:0.9;
}