* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url("./images/london-eye.jpg");

    background-repeat: no-repeat;
    background-position: 80% 50%;
    background-attachment: fixed;
    background-size: cover;

    font-family: 'Raleway', sans-serif;
    font-size: 15px;
}

@font-face {
    font-family: 'Raleway';
    src: url("./fonts/RalewayRegular.woff2") format('woff2');
    font-weight: 400;
    font-style: normal;
}

button {
    padding: 10px;
    background-color: #0a3a82;
    color: #FFFF;
    border: none;
    border-radius: 5px;
}

.root {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    max-width: 1040px;

    margin: 30px auto;

    background-color: #FFFF;
    box-shadow: 0 0 34px 3px rgba(0, 0, 0, 0.2);

    border-top: 5px solid #0a3a82;
    border-bottom: 5px solid #0a3a82;
}

.header {
    width: 100%;

    padding: 60px;

    background: url("./images/header.jpg");
    background-size: cover;
    background-color: #f9f9f9;
    background-position: center center;
    background-repeat: no-repeat;
}

.description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.mainContent {
    max-width: 770px;
    padding: 30px;
}

.question h2::after {
    content: '*';
    margin-left: 5px;
    vertical-align: top;
    color: #790000;
    font-size: 15px;
}

.answerOptions {
    display: flex;
    flex-direction: column;
    gap: 15px;

    margin: 15px 0;

    list-style-type: none;
}

.answerOptions input {
    margin-right: 5px;
}

.error-message {
    display: block;

    margin-bottom: 15px;

    color: #790000;
}

.progress-container {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 30px;
    background-color: #f5f5f5;
}

.progress-bar {
    width: 0;
    height: 30px;
    border-radius: 15px;
    background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 10px, rgba(0, 0, 0, .1) 10px, rgba(0, 0, 0, .1) 20px), linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .3));
    background-color: #0a3a82;
    text-align: center;
    line-height: 30px;
    color: white;
}

.progress {
    width: 0;
    height: 100%;
}

#result-container {
    display: none;
}

.score-title {
    padding: 15px 0;
    border-bottom: 1px solid #d9dcde;
}

.points {
    margin: 15px 0;
    font-weight: 700;
    font-size: 2rem;
    color: #060;
}

.resultDescription {
    display: flex;
    flex-direction: column;
    gap: 15px;

    margin: 15px 0;

    list-style-type: none;
}