/*
    ======================================
    + Home (Index) Page Style CSS
    ======================================
*/

/* Section: Contents */
.section-contents {
    width: 100%;
    min-height: 100vh;
}

.contents__wrap {
    width: 25rem;
    padding: 3.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 15%);
    background: #fff;
    border-radius: 8px;
}

.contents__logo {
    margin-bottom: 1rem;
}

.contents__title {
    font-size: 1.65rem;
    font-weight: 700;
}

/* Mobile */
@media (min-width: 320px) and (max-width: 480px) {
    /* Section: Contents */
    .contents__wrap {
        width: 85%;
        padding: 3.5rem 0.25rem;
    }

    .contents__title {
        font-size: 1.35rem;
    }
    /* // Section: Contents */
}
/* // Mobile */
