
body {
    font-family: Kavoon;
    background-color: #1C58F2;
    margin: 0;
    text-align: center;
    color: #fff;
    flex-direction: column;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}



/* .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 100%;
    padding: 20px;
    text-align: center;
    background-color: #1C58F2
} */

.image-container {
    /* margin: 20px auto; */
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    top: 214px;
}

/* .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
} */

.outer-circle {
    display: flex; 
    justify-content: center; 
    align-items: center;
    margin: auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid #FFFFFF33;
    justify-content: center;
}


.video-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    
}

.video-container video {

    width: 100%;
    height: 100%;  
    object-fit: cover;
    border-radius: 50%; 
    
}


.bar {
    width: 50px;
    height: 5px;
    background-color: white;
    margin: 20px auto;
    gap: 8px;
    opacity: 0px;
    border-radius: 10px;
}

h2 {
    color: white;
    margin-bottom: 20px;
    font-family: Kavoon;
    font-size: 24px;
    font-weight: bold;
    font-weight: 400px;
    line-height: 34.75px;
    letter-spacing: 0.05em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.container p {
    font-size: 24px;
    color: #fff;
    font-style: italic;
    font-family: Nunito;
    font-weight: 700;
    line-height: 31.44px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.start-button {
    margin-top: 10px;
    text-transform: uppercase;
    display: block;
    width: 200px;
    margin: 20px auto;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #fff;
    color: #1C58F2;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .start-button:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

.options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 20px 0;
}

.option {
    flex: 1 1 calc(50% - 10px);
    margin: 5px;
    padding: 10px;
    background-color: #e0f7fa;
    border-radius: 8px;
    text-align: center;
}

.option img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
}

.option input {
    display: none;
}

.option:hover {
    background-color: #b2ebf2;
}

.info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    margin: 20px 0;
}

#timer {
    font-size: 20px;
    font-weight: bold;
    color: #ff4d4d;
    margin: 10px 0;
}


#result {
    font-size: 22px;
    color: #003366;
}

#score-board {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

#score-board div {
    font-size: 18px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 8px;
}



