
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    background-color: #FDF4E3;
}

.imgs {
    position: absolute;
    margin-left: 12.5%;
    height: 100vh;
    width: 25%;
    display: flex;
    align-items: center;
}

img {
    width: 100%;
}

.texts {
    margin-top: 32.5vh;
    margin-left: 45%;
    width: 42.5%;

}

h1 {
    line-height: 2vw;
    font-family: 'Poppins', sans-serif;
    color: #231A24;
    font-size: 4.5vw;
    margin-bottom: 1.5vw;
    font-weight: 600;
}

h2 {
    font-family: 'Poppins', sans-serif;
    color: #231A24;
    font-size: 1.75vw;
    margin-bottom: 2.5vw;
    font-weight: 400;
    line-height: 2vw;
}

button {
    padding: 0.5vw 1.5vw;
    background-color: #89AC76;
    font-family: 'Poppins', sans-serif;
    color: #FFFFFF;
    font-size: 1.3vw;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 400;
}

a {
    text-decoration: none;
}


@media (max-width: 900px) {

    .texts {
        margin-top: 40vh;
    
    }

}

@media (max-width: 500px) {
    
    body {
        display: block;
        background-color: #FDF4E3;
    }
    
    .imgs {
        margin-top: 15vh;
        margin-left: 12.5%;
        height: auto;
        width: 25vh;
        position: relative;
    }
    
    img {
        width: 100%;
    }
    
    .texts {
        margin-top: 5vh;
        margin-left: 12.5%;
        width: 75%;
    
    }
    
    h1 {
        line-height: 3vh;
        font-family: 'Poppins', sans-serif;
        color: #231A24;
        font-size: 6vh;
        margin-bottom: 2vh;
    }
    
    h2 {
        font-family: 'Poppins', sans-serif;
        color: #231A24;
        font-size: 2.25vh;
        margin-bottom: 3.5vh;
        line-height: 3vh;
    }
    
    button {
        padding: 1vh 3vh;
        background-color: #89AC76;
        font-family: 'Poppins', sans-serif;
        color: #FFFFFF;
        font-size: 2vh;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    
    a {
        text-decoration: none;
    }

}