body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    background-image: url(backroundthing.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.container {
    width: 30%;
    max-width: 1200px; 
    margin: 0 auto; 
    background: #fff; 
    padding: 20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header {
    background-color: #222;
    color: #fff;
    padding: 1rem 0;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    gap: 6%;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #f4b400;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #222;
    color: #fff;
}

footer a {
    color: #f4b400;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #f4b400;
    box-shadow: 0 0 8px rgba(244, 180, 0, 0.5);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.modern-button {
    background-color: #f4b400;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    align-self: flex-start;
}

.modern-button:hover {
    background-color: #d29300;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
