@charset "UTF-8";

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

body {
    background-color: #a9a9a9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    padding: 30px;
}

header {
    color: #ffffff;
    font-size: 1.1em;
    text-align: center;
}

section {
    background-color: #ffffff;
    max-width: 650px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.192);
    margin: 50px auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form textarea {
    font-size: 20px;
    width: 100%;
    height: 200px;
    resize: vertical;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

form button {
    color: #ffffff;
    background-color: #ff4500;
    font-size: 15px;
    font-weight: bold;
    padding: 7px;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #E63D00;
}

#p3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer, footer a {
    color: #ffffff;
    font-size: 20px;
    text-align: center;
}

footer a {
    font-weight: bold;
}