main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url("../images/index_background.png") no-repeat 0 0 / cover;
    gap: 5rem;
}
main .img_wrap {
    width: 50%;
    max-width: 300px;
}
main .img_wrap img {
    width: 100%;
}
main .start {
    display: block;
    width: 35%;
    font-size: 2rem;
    color: #fff;
    background: #fc7647;
    padding: 1rem;
    text-align: center;
    border-radius: 2rem;
}

/* MODAL :: NO IDENTIFICATION */
.modal {
    width: 80vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: #fff;
    z-index: 999;
    text-align: center;
}
.modal h1 {
    font-size: 2rem;
    font-weight: 600;
    background: #fc7647;
    padding: 1rem;
    color: #fff;
}
.modal p {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 1.5rem 1.2rem;
}
.modal span a {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}
.modal .btn_wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.8rem 0;
}
.modal .btn_wrap button {
    width: 40%;
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    background: #fc7647;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    color: #fff;
}
.bg {
    min-width: 100vw;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}