/* Screen size notice */
.screen-size-notice {
    width: 100%;
    height: 100%;
    color: white;
    background-color: #313335;
    display: flex;
    justify-content: center;
    align-items: center;
}

.screen-size-notice h1 {
    font-size: 6em;
    text-align: center;
}

.screen-size-notice h2 {
    font-size: 2em;
    text-align: center;
}

.screen-size-notice h3 {
    font-size: 1.5em;
    text-align: center;
}

.screen-size-notice-text-div {
    padding: 0 7.5em;
}

.screen-size-notice p {
    text-align: center;
}

/* Start Project Notice */
.start-project-notice-container {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.start-project-notice {
    width: 26.25em;
    background-color: white;
    border-radius: 0.5em;
    border: 1px solid #C4C6CA;
    padding: 1.6em 2em;
    box-shadow: 0 0 2em rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.start-project-notice h4 {
    color: rgba(0, 0, 0, 0.7) !important;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
}

@media(min-height: 0px) and (max-height: 491px) {
    .screen-size-notice {
        display: inherit !important;
    }

    #main-container {
        display: none !important;
    }
}

.start-project-notice > p {
    text-align: center;
    color: black !important;
    margin-bottom: 0;
}