* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #2B2D42;
    color: white;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.navbar {
    width: 100vw;
    background-color: rgb(0, 0, 0);
    display: flex;


}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 60%;
    margin: 0 auto;
    font-size: 20px;

}

.navbar ul a {
    color: white;
    text-decoration: none;
}

.navbar ul a:hover {
    color: red;
    text-decoration: none;
}

.navbar img {
    width: 80px;
    height: auto;
}

.box {
    width: 100vw;
    display: flex;
    justify-content: center;
}

.contact-container {
    background-color: #8D99AE;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 400px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #EDF2F4;
    color: #2B2D42;
}

.contact-form button {
    padding: 10px;
    background-color: #EF233C;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #D90429;
}

input:focus,
textarea:focus {
    outline: none;
    background-color: #fff;
}