@font-face {
    font-family: 'lostar';
    src: url('../assets/fonts/lostar-webfont.woff') format('woff2'),
        url('../assets/fonts/lostar-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #252525;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,
h2 {
    text-align: center;
    font-family: 'lostar';
    text-transform: uppercase;
    font-size: 4rem;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #22ff22;
    font-weight: bold;
    font-size: 2.3rem;
}

h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    /* text-transform: uppercase; */
    font-size: 1.3rem;
    width: 80%;
    margin-left: 10rem;
}

p,
a,
li {
    font-family: 'Montserrat', sans-serif;
}

.quiz-container {
    text-align: center;
    padding: 2rem;
}

.question {
    margin-top: 10rem;
    margin-bottom: 2rem;
}

.question h2 {
    font-family: 'lostar';
    font-size: 3rem;
    color: #252525;
}

.options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.option {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 150px;
    text-align: center;
}

.option img {
    width: 90%;
    /* height: 100px; */
}

.option:hover {
    transform: scale(1.05);
}

.drop-zone {
    margin-top: 2rem;
    padding: 2rem;
    border: 2px dashed #ddd;
    border-radius: 10px;
    display: inline-block;
    margin-left: 20rem;
}

.drop-zone img {
    width: 100%;
    /* height: 100px; */
}

button {
    width: 15rem;
    height: auto;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    background-color: #22ff22;
    color: #252525;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #1ed41e;
    transform: scale(1.1);
}

/* Progress Bar Styles */
#progress-container {
    width: 100%;
    background-color: #e0e0e0;
    margin: 20px 0;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #76c7c0;
    transition: width 0.3s ease;
}

/* Welcome Page Styles */
.welcome-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #2c2c2c;
}

.welcome-page h1 {
    font-family: 'lostar';
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #212121;
}

.welcome-page p {
    font-size: 1.5rem;
}

.welcome-page button {
    width: 20rem;
    height: auto;
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: #3a3158;
    font-weight: bold;
    background: #22ff22;
    cursor: pointer;
    transition: ease-out 0.5s;

    box-shadow: inset 0 0 0 0 #159115;
}

.welcome-page button:hover {
    color: #22ff22;
    box-shadow: inset 0 -100px 0 0 #252525;
}

.welcome-page button:active {
    transform: scale(0.9);
}