* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-family: "Oswald", sans-serif;
    height: 100dvh;
}

.img-wrap img {
    width: 100%;
    max-width: 800px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    line-height: normal;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    background: #FFAC49;
    width: fit-content;
    color: white;
    margin: auto;
    padding: 0 8px;
}

h4 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

@media screen and (min-width:767px) {
    body {
        padding: 3rem 0;
        height: auto;
    }

    h1 {
        font-size: 1.375rem
    }

    h4 {
        font-size: 4rem;
    }
}