
*{
    box-sizing:border-box;
}

body{
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow-x: hidden;
    
    
} 
#body{
    background-image: url('images/grass.PNG');/* fix this to be the background picture you want it to be*/
    position: fixed;
    z-index: -3;
    width:100vw;
    height: 100vh;

}
img{
    height: 100%;
    width:100%
}
.imgs{
    height:19vw;
    width:19vw;
    
    
}
.imgs:hover{
    border-width: 2px;
    border-color: black;
    border-style: solid;
}

#all-imgs{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

#overall{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
p{
    font-weight: bold;
    font-size: 0.9rem;
}