* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

html,
body {
    scroll-behavior: smooth;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

.wrapper {
    position: relative;
    min-height: 100vh;
    background-color: aliceblue;
}

.wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #1a224dad;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-img img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.z-5 {
    z-index: 5;
}

.logo {
    max-width: 140px;
}

h1 {
    font-family: 'Lobster', Arial, Helvetica, sans-serif;
    margin-bottom: 28px;
}

h4 {
    font-family: 'Montserrat Alternates', Arial, Helvetica, sans-serif;
}

@media screen and (min-width: 576px) {
    h1 {
        font-size: 4rem;
    }

    h4 {
        font-size: 1.25rem;
    }
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 5rem;
    }

    h4 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1200px) {
    h1 {
        font-size: 6rem;
    }

    h4 {
        font-size: 1.75rem;
    }

    .logo {
        max-width: 200px;
    }
}

@media screen and (min-width: 1440px) {
    h1 {
        font-size: 7rem;
    }

    h4 {
        font-size: 2rem;
    }
}



@media screen and (max-width: 575.9px) {
    h1 {
        font-size: 3.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 0.92rem;
    }
}