body{
    margin: 0px;
}
a {
    color: black;
    text-decoration: none;
}

.top-nav-list{
    display: flex;
    justify-content: space-around;
    list-style: none;
    max-width: 600px;
    width: 100%;
    gap: 20px;
    /* background-color: red; */
}
.top-header{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: transparent;
    position: absolute;
    top: 0px;
    z-index: 99;
}
.top-header a{
    color: white;
}
.top-header a:hover{
    color: #80f8e4;
    text-decoration: underline;
    cursor: pointer;
}
.top-header .logo{
    /* position: absolute; */
    left: 15px;
    top: 10px;
    width: 60px;
}

/* sections ------------------------------------------------- */

.top-section{
    background-color: black;
    height: 500px;
    width: 100%;
}
.top-section .bg-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.top-section #bg-img{
    height: 500px;
    animation-name: bg-img;
    animation-duration: 3s;
    animation-timing-function: ease;
}
.bg-container .top-shadow{
    background: linear-gradient(black, transparent);
    height: 100px;
    width: 100%;
    position: absolute;
    top: 0px;
    z-index: 1;
}
.bg-container .bottom-shadow{
    background: linear-gradient(transparent, black);
    height: 100px;
    width: 100%;
    position: absolute;
    bottom: 0px;
}

.top-section .hovered-section {
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: absolute;
    bottom: 55px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}
.hovered-section > h1{
    color: white;
    background-color: rgba(0,0,0,0.6);
    border-radius: 20px;
    padding: 20px;
    font-size: 50px;
    /* font-family: 'Courier New', Courier, monospace; */
}

#bottom-layer{
    position: absolute;
    bottom: 0px;
    width: 100%;
    z-index: 0;
}