body {
    padding: 0;
    margin: 0;
    background: #02aab0;
}

.container {
    height: 100dvh;
    width: 100dvw;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #02aab0;
    background: -webkit-linear-gradient(to bottom, #00cdac, #02aab0);
    background: linear-gradient(to bottom, #00cdac, #02aab0);
}

.sub {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #374151;
    letter-spacing: 0.5em;

    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

@media (min-width: 640px) {
    .sub {
        margin-bottom: 1.5rem;
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .sub {
        margin-bottom: 2.75rem;
        font-size: 3rem;
        line-height: 1;
        letter-spacing: 0.45em;
    }
}

@media (min-width: 1280px) {
    .sub {
        margin-bottom: 5rem;
        font-size: 4.5rem;
        line-height: 1;
    }
}

.title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.35em;

    background-color: #000;
    color: transparent;
    text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.3);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;

    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

@media (min-width: 640px) {
    .title {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .title {
        font-size: 4.5rem;
        line-height: 1;
        letter-spacing: 0.45em;
    }
}

@media (min-width: 1280px) {
    .title {
        font-size: 6rem;
        line-height: 1;
    }
}
