* {
    margin: 0;
    padding: 0;
}

*{
    font-family: 'Oswald', sans-serif;
}

body{
    min-width: 100%;
}  

h2{
    font-size: 4em;
    margin-bottom: 5%;
}

p{
    font-size: 2em;
}

.contact-form {
    max-width: 800px;
    margin: 5% auto; 
    padding: 20px;
    text-align: center;
}

.form-content {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block; 
    margin-bottom: 8px;
    font-size: 2em;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%; 
    padding: 12px;
    border: 1px solid #ccc; 
    border-radius: 5px;
    box-sizing: border-box; 
    font-size: 1.5em;
}

.send-button {
    background-color: black;
    color: #ffc896;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.8em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-button:hover {
    background-color: #333; 
}

footer{
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  height:80px;
}

footer p{
  font-size: 1.5em;
  color:#ffc896;
}

/*=== Responsive Design ===*/
@media (max-width: 768px) {
    .contact-form {
        max-width: 90%;
        padding: 15px;
    }
    h2 {
        font-size: 3em; 
        margin-bottom: 4%;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 1.3em;
        padding: 10px;
    }
    .contact-form label {
        font-size: 1.6em; 
    }
    .send-button {
        width: 70%;
        font-size: 1.6em;
        padding: 15px;
    }
    footer p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .contact-form {
        max-width: 95%; 
        margin: 10% auto;
        padding: 10px;
    }
    h2 {
        font-size: 2.2em;
        margin-bottom: 3%;
    }
    p {
        font-size: 1.4em;
    }
    .contact-form label {
        font-size: 1.4em; 
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 1.1em;
        padding: 12px; 
    }
    .send-button {
        width: 100%;
        font-size: 1.4em;
        padding: 15px 0;
        margin-top: 20px;
    }
}