* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background: #D16587;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #fff;
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

header {
    background-color: #001e4d;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.content {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

section h2 {
    color: #001e4d;
    font-size: 20px;
    margin-bottom: 10px;
}

.quiz-link {
    display: inline-block;
    background-color: #001e4d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.quiz-link:hover {
    background: #4B64A7;
    color: #fff;
}
