@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Luckiest+Guy&family=Pacifico&family=Poppins:wght@200;300;400&family=Supermercado+One&display=swap');



*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
section{
    width: 100%;
    background-color: rgb(14, 13, 13);
    height: 100vh;
}
nav{
    background:rgb(14, 13, 13);
    height: 50px;
    width: 100%;
  
}
.nav-menu ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    width: 50%;
    margin-left: 452px;
}

.nav-menu ul li{
    margin-left: 10px;
    margin-right: 10px;
    color: white;
    font-family: "Poppins";
    font-size: 13px;
    font-weight: bold;
}
.nav-menu ul li:hover{
    cursor: pointer;
    color:white;
    border-radius: 3px;
    border: 1px solid white;
}

.nav-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 55px;
}
.logo{
    width: 50%;
}
.logo h4{
    margin-left: 28px;
    color: white;
    font-family: "Pacifico";
    font-size: 24px;
}

.head{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  
}
.head h2{
    font-family: "Fredoka";
    font-size: 35px;
    color: whitesmoke;
    margin-top: 20px;
}
.content{
    display: flex;
    width: 100%;
    height: 85%;

}
.item{
    display:flex ;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33%;
}
.item p {
    color: white;
    font-family: "Poppins";
    font-size: 19px;
}
.item img{
    width: 400px;
    height: 300px;
    border: 1px solid black;
    border-radius: 3px;
}
.item img:hover{
    cursor: pointer;
    width: 440px;
    height: 350px;
}
@media(max-width:1256px){
    .content{
        display: flex;
        flex-direction: column;
        margin-top: 25px;
        margin-bottom: 50px;
    }
    .item{
        width: 100%;
        height:400px;
    }
    section{
        height:max-content;
        overflow-y: hidden;
    }
    .item img:hover{
        cursor: pointer;
        width: 415px;
        height:370 px;
    }
    
}