/* === DEBUG BEGIN === */
/* * {
    outline: 1px solid rgb(255, 0, 0, 0.6);
    position: relative;
}

*::before {
    content: attr(data-label) " " attr(class) " " attr(id);
    position: absolute;
    top: 4px;
    left: 4px;
    background: rgba(0,0,0,0.65);
    color: red;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

*:not([data-label]):not([class]):not([id])::before {
    content: none;
}

html::before,
body::before,
script::before,
style::before,
link::before,
meta::before {
    content: none !important;
} */
/* === DEBUG END === */


html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #000000;
    font-family: 'Rubik', sans-serif;
}


/* ======= MAIN BEGIN ======= */
.main {
    display: flex;
    justify-content: center;
    flex: 1 0 auto;
}

.main-content {
    width: 60%;
    border: 3px solid #c28939;
    border-radius: 40px;
    padding: 3rem;
}

.main-title {
    color: #c28939;
    font-size: 3rem;
    font-weight: 500;

    text-align: center;
    margin-top: -0.5rem;
}

.main-text {
    text-align: justify;
    color: #c28939;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

.main-text#stay-tuned {
    text-align: center;
    font-weight: 550;
}
/* ======= MAIN END ======= */
