* {
    box-sizing: border-box;
}

::-webkit-scrollbar {
    display: none;
}

body{
    margin: 0;
}
 
.container{
    width:100%;
    min-height: 100vh;
    background-color: rgb(0, 65, 11);
}
 
header{
    display: flex;
    width: 100%;
    max-height: 300px;
    background-color: rgb(255, 223, 116);
    font-family: Arial, Helvetica, sans-serif;
    justify-content: center;
    margin-bottom: 50px;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100%;
}
 
.box {
    position: relative;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border: 5px solid rgb(255, 223, 116);
    border-radius: 15px;
    margin: 10px;
    box-shadow: 10px 10px 5px black ;
    transition: transform 0.3s ease;
    flex: 1 1 300px;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all linear 0.7s;
}
 
.hover_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
 
.box:hover img {
    opacity: 0;
    
}
 
.box:hover .hover_img {
    opacity: 1;
    
}

.row{
    max-width: 75%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.box:hover{
    transform: scale(1.02);
    z-index: 10;
    position: relative;
}