/* Reset styles for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styles for the page */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

header, footer {
    padding: 1em;
    background-color: #f2f2f2;
}

nav {
    background-color: #333;
}

nav ul {
    list-style: none;
    display: flex;
    /*justify-content: space-between;
    padding: 1em;*/
    padding: 10px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em;
}

nav a:hover {
    background-color: #fff;
    color: #333;
}

main {
    padding: 1em;
}

h1, h2 {
    margin: 1em 0;
}

footer {
    text-align: center;
    margin-top: 2em;
}

/* Styles specific to the about page */
#about {
    background-color: #f2f2f2;
}

/* Styles specific to the contact page */
form {
    margin-top: 1em;
    display: flex;
    flex-direction: column;
}

label, input, textarea {
    margin-bottom: 1em;
    padding: 0.5em;
    font-size: 1.2em;
}

label {
    font-weight: bold;
}

input[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 0.5em;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #fff;
    color: #333;
}
