html {
    font-size: 62.5%;
    font-family: 'Red Hat Text', 'Helvetica Neue', Helvetica, sans-serif;
}

body {
    font-size: 1.6rem;
    box-sizing: border-box;
    color: #f9d0c5;
    background-color: #000;
    min-height: 100vh;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit
}

main {
    width: 100%;
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
}

.content {
    width: 50%;
    background-color: #2b443d;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
}

.content-box {
    width: 90%;
    max-width: 50rem;
}

.content-img {
    width: 25rem;
    height: auto;
}

h1 {
    text-transform: uppercase;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

p {
    margin-bottom: 3rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .5s ease-out;
}

a:hover {
    text-decoration: underline;
}

.image {
    width: 50%;
    background-color: #f9d0c5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0;
}

.image img {
    width: 70%;
    max-width: 500px;
    height: auto;
}

@media only screen and (max-width: 1280px) {
    html {
        font-size: 0.8vw;
    }
}

@media only screen and (max-width: 1024px) {
    html {
        font-size: 1vw;
    }
}

@media only screen and (max-width: 768px) {
    html {
        font-size: 1.5vw;
    }

    main {
        width: 100%;
        flex-direction: column;
    }

    .content,
    .image {
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    html {
        font-size: 2vw;
    }

    .image {
        min-height: 40vh;
    }
}