*{
    margin:0;
    padding:0;
}

nav{
   display: flex; 
   justify-content: space-between;
   font-family: Arial, Helvetica, sans-serif;
   background-color: black;
   font-size: x-large;
   width: 100%;
}

ul{
    list-style-type: none;
    display: flex;
    margin: auto;
    justify-content: space-evenly;
    width: 50%;
}

li{
    padding: 14px 0px;
}

a{
    text-decoration: none;
    color: white;
    margin: auto;
}

@media screen and (max-width: 480px){
    nav{
        flex-direction: column;
    }
    ul{
        flex-direction: column;
        text-align: center;
    }
    
}

section{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly ;
    margin: 5px 120px;
}

figure{
    box-shadow: 5px 8px 15px rgb(35, 34, 34);
    height: 400px;
    width: 300px;
    margin: 8px 8px;
    transition-delay: 50ms;
}
img{
    width:280px;
    height:220px;
    margin: 10px 10px 10px 10px;
}
figcaption{
    text-align: center;
}
h2{
    font-size: 1.3rem;
}

button{
    height: 35px;
    width: 100px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
    border: 1px solid rgba(161, 161, 161, 0.947);
    transition-delay: 50ms;
}
button:hover{
    background-color: rgb(39, 150, 240);
    color: white;
}
figure:hover{
    transform: scale(1.04);
}