@import url("https://fonts.googleapis.com/css?family=Montserrat:500&display=swap");
@import url("https://fonts.googleapis.com/css?family=Dancing+Script&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-image: url(../images/quizz3.jpg);
    /* background-repeat: no-repeat; */
    background-size: cover;
}
.nav {
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    position: fixed;
    top: 0px;
    z-index: 10;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

.nav li,
a,
button {
    float: left;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 13px;
    color: #2e3d49;
    display: block;
    text-decoration: none;
    text-align: center;
}

.nav ul li img {
    width: 20px;
    margin-right: 10px;
    transform: translateY(5px);
    padding-top: 5px;
}

.nav ul li {
    list-style: none;
    display: inline-block;
    padding: 0px 20px;
}

.nav ul li a {
    transition: all 0.3s ease 0s;
}

.nav ul li a:hover {
    color: #ffbb3b;
}
.nav .switch-tab {
    cursor: pointer;
    visibility: hidden;
}

.nav .check-box {
    cursor: pointer;
    visibility: hidden;
}
#icon {
    padding-right: 10px;
    color: #a83279;
}
.title {
    margin-top: 18%;
    display: grid;
    justify-content: center;
    align-items: center;
}
.title span {
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
    font-size: 60px;
    /*color: #2E3D49;*/
    color: black;
}
.title .shortdesc {
    font-family: "Open Sans", sans-serif;
    font-size: 20px;
    color: black;
    /* color: #efefef; */
    margin-bottom: 50px;
    text-align: center;
    /*display: none;*/
}

.title button {
    padding: 20px 2%;
    border: none;
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(to right, #a83279, #ffbb3b);
    /* background: #df2771; */
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
.title button:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.panel {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
}
/*Different Topics Container*/
.left-side {
    background: #fff;
    height: 100%;
    width: 25%;
    display: flex;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5);
}

/*Google Form Container*/
.right-side {
    background: #fff;
    height: 100%;
    width: 75%;
}
.left-side ul {
    margin: 50px;
    margin-top: 150px;
}
.left-side li {
    list-style-type: none;
    cursor: pointer;
    color: #a83279;
    /* color: #fa4b37; */
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 30px;
}
.left-side li:hover {
    color: #000;
    font-size: 1.5em;
    font-weight: 900;
    transition: 0.3s ease-in-out;
}

#quiz-container {
    margin-top: 80px;
    width: 100%;
    height: 100%;
}

.quiz-frame {
    width: 100%;
    height: 95vh;
    border: none;
}
.main-frame {
    background: url(../images/q1.jpg);
    background-size: cover;
    background-position: center;
}
.main-frame p {
    font-size: 5em;
    font-weight: 900;
    color: #2e3d49;
}
@media screen and (max-width: 1000px) {
    .nav ul,
    .nav .search {
        display: none;
    }
    .nav #learned-logo {
        transition: 1s ease;
        margin-left: 35%;
        transform: scale(1.2);
    }
    .nav ul li {
        width: 100%;
        margin-bottom: 5px;
    }
    .nav .switch-tab {
        visibility: visible;
        color: #a83279;
    }
    .nav .check-box {
        visibility: visible;
    }
}
@media screen and (max-width: 400px) {
    .nav #learned-logo {
        margin-left: 20%;
    }
}
