body {
    font-family: "Andika", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: grey;
    background-image: url('/img/header-bg.jpg');
    background-size: cover;
    background-position: center center;
    padding: 20px;
    text-align: center;
    color: white;
}

header img {
    width: 150px;
    height: auto;
}

header .h1 {
    font-size: 2.5em;
    margin: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.main {
    display: flex;
    margin: 20px;
}

aside {
    width: 25%;
    padding: 10px;
    background-color: #f0f0f0;
}

aside h2 {
    color: #333;
}

aside ul {
    list-style: none;
    padding: 0;
}

aside ul li {
    margin-bottom: 10px;
}

aside ul li a {
    color: #0066cc;
    text-decoration: none;
}

section {
    width: 75%;
    padding: 10px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

footer a {
    color: white;
    margin: 0 10px;
}

.main img {
    max-width: 100%;
    max-width: 720px;
    height: auto;
    width: auto;
}

/* Style the form container */
form {
    width: 100%;
}

/* Style the labels */
form label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

/* Style the input fields and textarea */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

/* Specific height for textarea */
form textarea {
    height: 150px;
}

/* Style the submit button */
form input[type="submit"] {
    display: block;
    margin: 20px auto 0;
    padding: 15px 30px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for the submit button */
form input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Focus styles for input fields and textarea */
form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
}

/* Placeholder text color */
form input::placeholder,
form textarea::placeholder {
    color: #999;
}
