body {
    font-family: Arial, sans-serif;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 5rem 0;
    padding: 0;
    color: #333333;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 300px;
}

label {
    display: block;
    margin-top: 10px;
}

input,
select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
}

button {
    display: block;
    margin-top: 10px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

#result {
    margin-top: 20px;
    font-size: 20px;
    text-align: center;
}

section {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 5px;
    max-width: 60rem;
    background-color: rgba(255, 255, 255, 0.8);
}

h2 {
    color: #333333;
    margin-bottom: 0.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

strong {
    color: #007BFF;
}
