* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
}

#navbar {
    background-color:black;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    position: relative;
    width: auto;
    height: 70px;
}

#cover {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    margin-bottom: 0px;
}


.footer-content {
    background-color: black;
    text-align: center;
    padding: 20px;
    padding-bottom: 120px;
    line-height: 2em;
}

.footer-content p {
    margin-bottom: 10px;
    color: gray;
}

.social-media-icons li {
    display: inline-block;
}

.social-media-icons li:last-child {
    margin-right: 0;
}

a {
    text-decoration: none;
    color:white;
    transition: 0.3s ease-out;
}

#toptext {
    position: absolute;
    top: 13%;
    left: 1%;
    max-width: 30%;
    height: auto;
    mix-blend-mode: exclusion;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

#bottomtext {
    position: absolute;
    top: 10%;
    left: 52%;
    max-width: 45%;
    height: auto;
    opacity: 85%;
}

.swoop-in {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.swoop-in--animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

a:hover {
    color: rgb(180, 87, 41);
    transition: 0.3s;
}

#whatsapp {
    padding: 10px;
    width: 75px;
    height: auto;
    background-color: transparent;
    transition: 0.4s ease-in-out;
}

#instagram {
    padding: 10px;
    width: 75px;
    height: auto;
    background-color: transparent;
    transition: 0.4s ease-in-out;
}

#whatsapp:hover {
    transform: scale(115%);
    transition: 0.4s ease-in-out;
}

#instagram:hover {
    transform: scale(115%);
    transition: 0.4s ease-in-out;
}