@font-face {
    font-family: 'SicoobSans';
    src: url('../fonts/SicoobSans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html {
    height: 100%;
}

body {
    font-family: 'SicoobSans', Arial, sans-serif;
    background-color: #003641;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#content-loading {
    position: relative;
    z-index: 10;
}

.main-container {
    background-color: #00AE9D;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    display: none;
    flex-direction: column;
}

main {
    flex-grow: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.mt-8 {
    margin-top: 1rem;
}
.button {
    background: #7DB61C;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 15px 40px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.2s;
}
.button:hover {
    background: #C9D200;
}
.subtitle {
    color: #fff;
    font-size: 1rem;
}
.divider {
    border-top: 2px solid #003641;
    margin: 60px 0;
}