/* General */


body {
    font-family: 'Times New Roman', Georgia, sans-serif;
    background-color: black;
    color: white;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.navbar {
    background-color: black;
    padding: 10px;
    border-bottom: 1px solid #292834;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    display: block;
    object-fit: cover;
}

ul li {
    list-style: none;
    float: right;
    padding: 10px 20px;
}

a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #f87171;
}

/* Main Content */
main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    text-align: left;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 24px;
}

label {
    display: block;
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdbdf;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
}

input[type="submit"] {
    background-color: #f87171;
    color: white;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #dcdbdf;
    color: #f87171;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
}