section{
    align-items: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
}

#home {
    background-color: #f2f2f2;
    height: 100vh;
    text-align: center;
}

#home h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#home p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.5;
}

#events {
    background-color: #373c4f;
    padding-top: 55px;
}

#events h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

#contact {
    background-color: #f9f9f9;
    padding: 50px;
    text-align: center;
}

#contact h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
}

#contact form {
    max-width: 500px;
    margin: 0 auto;
}

#contact form label {
    display: block;
    margin-bottom: 10px;
    color: #555;
}

#contact form input[type="text"],
#contact form input[type="email"],
#contact form textarea {
    /* width: 100%; */
    width: 500px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

#contact form textarea {
    height: 150px;
}

#contact form input[type="submit"] {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

#contact form input[type="submit"]:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}
