/* Full-Screen Container */
.start-screen {
    width: 100%;
    height: 100dvh;
    background-color: white;
    display: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.start-screen .title-container{
    position: fixed;
    width: 100%;
    top: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* CHANEL Title */
.start-screen .title-container .title {
    /* position: absolute;
    top: 29.5%; */
    font-size: 40px;
    font-family: "ABChanelCorpoSemiBold";
    font-weight: bold;
    text-align: center;
    color: black;
}

/* Description Text */
.start-screen .title-container .description {
    /* position: absolute;
    top: 36%; */
    font-size: 14px;
    font-family: "ABChanelCorpoLight";
    font-weight: 100;
    text-align: center;
    width: 80%;
}

/* Language Section */
.language-section {
    position: absolute;
    bottom: max(env(safe-area-inset-bottom), 12%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: env(safe-area-inset-bottom);
}

/* Select Language Text */
.language-section p {
    font-size: 14px;
    font-family: "ABChanelCorpoLight";
    margin-bottom: 10px;
    font-weight: 100;
}

/* Circle Button */
.language-section button {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.language-section button img {
    width: 25px;
    height: 25px;
    transform: rotate(90deg);
}