*{
    padding: 0;
    margin: 0;
}

body{
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(4,1fr);
}

.body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: 1/5;
    grid-row: 1/5;
}

img{
    height: 50px;
    width: 50px;
}

.logo{
    height: auto;
    width: 200px;
}

.logo-container{
    grid-column: 1/5;
    grid-row: 1/2;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1,h2{
    color: #00833A;
}

.body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #00833A;
    gap: 5px;
    font-weight: 900;
    padding: 20px;
}

.contact a{
    color: #00833A;
}

@media (max-width: 790px){
    h1,h2, .contact{
        font-size: 0.8rem;
    }

    img{
        height: 15px;
        width: 15px;
    }

    .logo{
        height: auto;
        width: 100px;
    }

}