*{
    margin: 0;
    padding: 0;
    font-family:  'Poppins', sans-serif;;
    box-sizing: border-box;
    
}

a{
    text-decoration: none;
}
ul{
    list-style: none;

}

body{
    margin: 0px;
    padding: 0px;
    font-family:  'Poppins', sans-serif;
}
.container{
    width: 100%;
    height: 140vh;
    padding: 20px;
    margin-right: 30px;
    background-color: #e0cccc;

}
.header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header h3{
    font-size: 35px;
    font-weight: bold;

}

.header ul li{
    font-size: 15px;
    padding: 10px;
    display: flex;
    display: inline-block;
    margin-left: 20px;
    margin-top: 10px;
    position: relative;
    border: 7px solid #b38383;
    background-color: #b38383;
    border-radius: 40%;
    
}
.header ul li:hover{
    border: 7px solid #ffffff;
    background-color: #ffffff;
    border-radius: 40%;
    color: black;
    
    
}
.header ul li a{
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
}
span{
    border: 3px solid black;
    width: 65%;
    border-radius: 20%;
    margin-top: 10px;
    margin-bottom: 20px;
}
.img{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.img img{
    width: 20%;
    height: 40%;
    cursor: pointer;
    margin-right: 20px;
    margin-bottom: 15px;
}
.img img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 7px rgba(68,77,136,0.2);
}