body{
    background-image: url("img/blue.jpg");
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: left;
}
h1{
    text-align: center;
    height: 10vh;
    width: 100%;
    color: white;
}
form{
    color: white;
    backdrop-filter: blur(100px);
}
h2{
    color: white;
}
p{
    color: white;
}
input[type=number]{
    border-radius: 50px;
    text-align: center;
}
button{
    border-radius: 50px;  /* Ставит кнопку круглой */
    border: #DC143C; /* Цвет рамки */
    background-color: #DC143C; /* Цвет фона */
    color: white; /* Цвет текста */
    font-size: 20px; /* Размер текста */
    cursor: pointer; /* Изменение курсора на указатель */
}