* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a2e; 
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


#startPage, #quizSection {
    background: #16213e; 
    width: 90%;
    max-width: 400px;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: none; 
}

#startPage {
    display: block;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

p {
    color: #cbd5e1; 
    margin-bottom: 30px;
    line-height: 1.5;
}

button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    background-color: #16213e;
    border: none;
    border-bottom: 3px solid  #f97316;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color:  #f97316;
    transform: translateY(-5px); 
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}