@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    text-transform: capitalize;
    color: white;
}

button {
    color: black;
}

body {
    padding: 0;
    margin: 0;
    background-image: url(/images/background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.sec1 {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    font-family: "Oswald", sans-serif;
    overflow: hidden;
}

.start-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 80%;
}

nav {
    width: 100%;
    font-size: 0.8em;
    background-color: rgba(0, 0, 0, 0.423);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.box {
    background-color: rgba(0, 0, 0, 0.423);
    display: flex;
    align-items: center;
    justify-content: center;
}

.box h2 {
    width: 80%;
}

.startBtn {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.startBtn button {
    font-size: 1.5em;
    padding: 0.3em 2.2em;
    color: white;
    border: none;
    border-radius: 15px;
}

.strBtn {
    background-color: #0A3D0E;
}

.strBtn:hover {
    background-color: #066E0A;
    font-weight: 700;
    border: 2px solid white;
}

.qitBtn {
    background-color: #3D0A11;
}

.qitBtn:hover {
    background-color: #6D080D;
    font-weight: 700;
    border: 2px solid white;
}

.sec2 {
    font-family: "Poppins", serif;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    gap: 1em;
    overflow: hidden;
}

.container {
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    border-radius: 20px;
    padding: 1.5em;
}

.main-Box {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.423);
    gap: 1em;
    padding: 1em;
}

.head {
    width: 50%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10%;
}

.opt {
    width: 40%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.5rem 0;
}

.opt button {
    cursor: pointer;
    width: 80%;
    border-radius: 10px;
    padding: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    padding: 1rem 0.3rem;
}

/* @media screen */

@media only screen and (max-width: 425px) {
    .sec2{
        gap: 0;
        padding: 1rem 0 2rem;
    }
    .container {
        height: 90%;
        padding-bottom: 10%;
        overflow: scroll;
    }

    .main-Box {
        flex-direction: column;
    }

    .main-Box>div {
        width: 90%;
    }

    .opt {
        flex-wrap: nowrap;
    }

}

@media only screen and (max-width: 375px) {
    .box h2 {
        width: 90%;
        font-size: 1em;
    }

    .startBtn {
        width: 90%;
        flex-direction: column;
        gap: 1em;
    }

    .startBtn button {
        width: 80%;
        padding: 15px;
        font-weight: 700;
    }
}

@media only screen and (max-width: 320px) {
    .head {
        width: 96% !important;
    }

    .head .h2 {
        font-size: 1em;
    }

    .opt {
        width: 96% !important;
    }
}