html {
    box-sizing: border-box;
    overflow-x: hidden;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background: #000;
    color: #fff;
    margin: 0;

    height: 100vh;

    display: flex;
    flex-direction: column;

    font-family: 'Redressed', cursive;
    padding: 3rem 0;
    overflow-x: hidden;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

.font-cursive {
    font-family: 'Shizuru', cursive;
}

.font-sans-serif {
    font-family: 'Inter', sans-serif;
}

.underline-cursive {
    position: relative;
}
.underline-cursive::after {
    position: absolute;
    content: "";

    background: #fff;

    height: 2px;

    left: 0;
    right: 0;
    bottom: -5px;
}

.flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-col {
    flex-direction: column;
}
.flex-1 {
    flex: 1;
}

.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: end;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.mt-auto {
    margin-top: auto;
}

.mt-5 {
    margin-top: 3rem;
}
.mt-4 {
    margin-top: 2.5rem;
}
.mt-3 {
    margin-top: 2rem;
}
.mb-3 {
    margin-bottom: 2rem;
}

.my-6 {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/** **** **/
.message-container {
    margin-left: auto;
    margin-right: auto;

    max-width: 768px;
    width: 100%;

    padding: 1rem 24px;
}

.image-container {
    margin: 3rem 0;
    width: 100%;
}

.image-container img {
    max-width: 100%;
    height: auto;
}

@media screen and (min-width: 2400px) {
    .image-container {
        margin: 3rem auto;
        max-width: 1200px;    
    }
}

@media screen and (min-width: 1200px) {
    .lower-responsive {
        margin-bottom: -100px;
    }
}