*{
    padding:0;
    margin:0;
    box-sizing: border-box;

}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    font-size: 3rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    

}

header, footer{
    background-color: #222831;
    color: white;
    height: 6rem;
}

main{
    padding: 40px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

nav{
    width: 60vw;
    height: 100%;
    margin: 0 auto;
    
}

nav > ul{
    display: flex;
    list-style: none;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    color: firebrick;
}

nav > ul >li{
    width: 100%;
    height: 100%;

}

.active{
    background: red;
}

nav > ul > li > a{
    color: white;
    height: 100%;
    width: 100%;
    display: block;
    text-align: center;
    line-height: 60px;
    text-decoration: none;
}


footer > p{
    width:60vw;
    margin: 0 auto;
    padding-left: 40px;
}

h1{
    font-size: 250%;
    margin-bottom: 20px;
    border-bottom: 1px solid black;
    font-weight: 500;
}

section{
    width: 60vw;
    padding: 40px;
}

article{
    width: 100vh;
    margin: 0 auto; 
    padding: 40px;
}

.box{
    width: 100vh;
    height: 40rem;
    position: relative;
    padding: 0;
    margin-bottom: 40px;
}

.box > a > figure{
    width: 100%;
    height: 100%;
}

.box > a > figure > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.box > a > figure > img:hover{
    transform: none;
}

.box > a > section{
    position: absolute;
    bottom: 0%;
    left: 0%;
    padding: 40px;
    color: white;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, 60%,  black);
    border-radius: 50px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

figure{
    margin-bottom: 40px;
}

figure > img{
    width: 100%;
    border-radius: 5px;
    transition: 0.2s transform;
}

img:hover{
    transform: scale(1.05);
}

p{
    margin-bottom: 40px;
}

p:last-of-type{
    margin-bottom: 0;
}

figcaption{
    font-size: 80%;
    font-style: italic;
    font-weight: 400;
}

audio{
    display: block;
    width: 40%;
    margin-bottom: 20px;
}

video{
    width: 100%;
    margin-bottom: 20px;
}

.top{
    width: 80px;
    height: 8rem;
    background: rgb(22, 21, 21);
    border: none;
    font-size: 125%;
    font-family: 'Open Sans', sans-serif;
    border-radius: 5px;
    color: white;
    position: fixed;
    bottom: 120px;
    right: 120px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer{
    display: flex;
    align-items: center;
}

@media screen and (max-width:1000px) {
    main{
        width: 80vw;
    }
    footer > p{
        width: 80vw;
    }
    img:hover{
        transform: none;
    }
    .top{
        width: 60px;
        height: 60px;
        bottom: 60px;
        right: 60px;
    }
    header{
        width: 100%;
    }
    nav{
        width: 100%;
    }
    nav > ul{
        display: block;
    }
}

@media screen and (max-width:600px) {
    body{
        font-size: 16px;
    }
    article{
        width: 100vw;
        padding: 20px;
    }
    h1{
        font-size: 180%;
    }
    footer > p{
        width: 100vw;
        padding-left: 20px;
    }
}