body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
}

.discription, .plz-read {
    font-size: 0.9em;
    margin: 5px;
}

h1 {
    text-align: center;
    margin: 10px;
    color: #333;
    font-size: 1.5em;
}

.score-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    align-items: center;
    margin: 5px;
}

label {
    flex: 1;
    font-weight: bold;
    color: #555;
}

input[type="number"] {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background-color: #4aaabb;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #50ccdd;
}

#pred {
    color: gold;
}

.result {
    margin: 10px;
    font-weight: bold;
    font-size: 1.5em;
    color: #333;
    text-align: center;
}
