body{
    background-color: #FFFFF2;
}

#navbar{
    height:50px;
    width:100vw;
    border-bottom: 0.5px solid #5c5c5a;
    display:flex;
    position: fixed;
    left:-1px;
    background-color: #FFFFF2;
    z-index: 1000;
    top:0px;
    padding-top:10px;
}

#pages{
    display:flex;
    position:absolute;
    right:20px;
}

a{
    color:black;
    text-decoration: none;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 300;
    font-style: normal;
}

#footer{
    height: 80px;
    display:flex;
    justify-content:space-between;
    position:relative;
    bottom:-50px;
    border-top: 0.5px solid black;
    margin-top:150px;
}

.contact{
    font-family: "azo-sans-web", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    margin:20px;
}

#name-logo{
    /* font-family: "azo-sans-web", sans-serif;
    font-weight: 300;
    font-style: normal; */
    padding:10px;
    width:120px;
    height:auto;
    left: 0px;
    top:-10px;
    position: absolute;
}

.link{
    padding:10px;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 300;
    font-style: normal;
}

/*content*/

#content{
    position:relative;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-evenly;
    top:70px;

}

#description{
    width: 30vw;
    font-family: "azo-sans-web", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poster{
    width: 31vw;
    margin-right:20px;
    border:0.25px solid #31312e9c;
}

@media (max-width:425px){

    #content{
        justify-content:space-evenly;
        align-items:center;
        align-content:center;
    }

    .poster{
        width:45vw;
        margin:0px;
    }

    #description{
        width:94vw;
        margin-top:20px;
        margin-bottom:20px;
    }

}