#root-container, #header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#app-icon {
    height: 80px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-color: rgb(189, 189, 184);
    border-width: 1px;
    border-style: solid;
    border-radius: 22px;
}

#header-text {
    text-align: center;
    max-width: 85vw;
    margin-bottom: 20px;
}

#increase-info {
    border-color: rgb(189, 189, 184);
    border-style: solid;
    border-width: 1px 0;
    padding: 10px 20px;
    width: 80%;
}

#increase-info #begins {
    color: rgb(142, 142, 147);
}

.medium {
    font-weight: 500;
}

#button-container {
    width: calc(80% + 40px);
    margin-top: 20px;
}

.outline-button {
    background: none;
    color: rgb(0, 122, 255);
    border-color: rgb(0, 122, 255);
    border-width: 1px;
    border-style: solid;
    border-radius: 12px;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

#footer-container {
    margin-top: 20px;
    color: rgba(60, 60, 67, 0.58);
    font-size: 13px;
}

@media (prefers-color-scheme: dark) {

    #header-text {
        color: rgb(235, 235, 245);
    }

    #increase-info {
        color: rgb(235, 235, 245);
    }

    .outline-button {
        color: rgb(10, 132, 255);
        border-color: rgb(10, 132, 255);
    }

    #footer-container {
        color: rgba(235, 235, 245, 0.6);
    }

}