* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

:root {
    --color-primary: #e4e0ce;
    --color-secondary: #432918;
}

body {
    background-color: var(--color-primary);
    position: relative;
}

body > img {
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
}

.container {
    max-width: 70%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container img {
    height: 500px;
    z-index: 1;
}

@media screen and (max-width: 992px) {
    .container img {
        height: 350px;
    }
}

@media screen and (max-width: 785px) {
    .container img {
        height: 280px;
    }
}

@media screen and (max-width: 680px) {
    .container {
        position: relative;
        justify-content: center;
    }
    .container img {
        height: 250px;
        position: absolute;
        bottom: 30px;
    }
}

@media screen and (max-width: 550px) {
    .container {
        position: relative;
        justify-content: center;
    }
}
