body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    
}


h1 {
    color: #131212;
    text-align: center;
    padding: 0;
    margin: 10px;
}

p {
    color: #ffffff;
}

/* Navigation styles */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

nav ul li a:hover {
    color: #007bff;
    
}

/* Form styles */
form {
    max-width: 700px;
    margin: 20px auto;
    padding: 10px;
    background-color: hwb(285 96% 2%);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}


input[type="text"],
input[type="student email"],
input[type="tel"],
input[type="password"],

select[id="birthMonth"],
select[id="birthDay"],
select[id="birthYear"],

select[id="educationLevel"],
select[id="courses"],


textarea[id="comment"],
textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: hwb(56 60% 4%);
   
}

input[type="checkbox"] {
    margin-right: 5px;
}

button[type="submit"],
button[type="reset"] {
    background-color: #e2c029;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button [type="submit"]:hover,
button[type="reset"]:hover {
    background-color: #dfc222;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    form {
        width: 90%;
    }
}
