body{
    background-color: #5b7e4f;
    display: flex;
    justify-content: center;
    align-items: center;

    
    height: 100vh;
}

.hero{
    width: 60vw;
    height: 80vh;
}

.hero img{
    width: 100%;
    height: 100%;

    border-radius: 30px;
}

@media(max-width: 600px){
    .hero{
        width: 95vw;
        height: 55vh;
    }
}