head,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow-x: hidden;
}

#navbar {
    z-index: 1;
    display: flex;
    width: 100%;
    height: 175px;
    background-color: #4f4f4f;
    justify-content: center;
    font-size: 15px;
}

#navlist {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: center;

    list-style-type: none;
}

#navlist li {
    margin: 20px;
    margin-top: 120px;
    margin-right: 20px;
}

a:link {
    font-weight: bold;
    text-decoration: none;
    color: white;
}

a:visited {
    font-weight: bold;
    text-decoration: none;
    color: white;
}

a:hover {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.712);
}

a:active {
    font-weight: bold;
    color: white;
}

#email:link {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#email:visited {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#email:hover {
    color: rgba(0, 0, 0, 0.712);
}

#email:active {
    color: rgb(0, 0, 0);
}

#information {
    display: flex;
    position: absolute;
    left: 0px;
    list-style-type: none;
    justify-content: center;
}

#information li {
    margin: 20px;
    margin-top: 0px;
    margin-left: 0px;
}

#socials {
    display: flex;
    position: absolute;
    right: 0px;
    list-style-type: none;
    justify-content: center;
}

#socials li {
    margin: 20px;
    margin-top: 0px;
    margin-left: 0px;

}

#logo {
    width: 255px;
    height: 97.8px;
    display: flex;
    position: absolute;
    top: 15px;
}

#background {
    background-image: url("../../img/IMG_9039-scaled.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 120vh;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: -1;
}


@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#welcome-text {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    position: relative;
    z-index: 0;
    color: white;
    text-align: center;
    padding-top: 100px;

    margin-bottom: -30px;

    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.5s;
}

#welcome-text ul {
    background-color: #3d3d3d;
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 300px;
    margin-top: 150px;
}

#welcome-text ul li {
    margin: 20px;
}

#welcome-text ul li img {
    width: 200px;
    height: auto;
}


#footer {
    display: flex;
    width: 100%;
    height: 300px;
    background-color: #3d3d3d;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    bottom: -100px;
    top: 0px;
}

#footer ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-evenly;

}

#footer ul li {
    margin: 20px;
    margin-left: 100px;
    margin-right: 100px;
    color: white;
}

#footer ul li h1 {
    font-size: 20px;
}

#footer ul li h2 {
    font-size: 12px;
    margin-left: 10%;
}