2. Создаем CSS файл


body {
    font-family: "Nata Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #acd9f3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.answers {
    gap: 40px;
    display: flex;
    justify-content: center;
}

.answer {
    background-color: #262626;
    color: #fff;
    border-radius: 30px;
    padding: 50px 63px;
    font-size: 30px;
    display: inline-block;
    margin-bottom: 20px;
    cursor: pointer;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.status {
    border: 2px solid #fff;
    width: 500px;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.container-score {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 36px;
}

.container-text {
    margin-top: 20px;
}

.answer-grey {
    color: grey;
}

.answer-red {
    color: red;
}

.answer-green {
    color: green;
}