body {
    background: #e6e6fa;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
form {
    background: #ffffff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

button {
    background-color: #45a049;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    transition: 0.5s ease-in-out;
    background-color: #e6e6fa;
    transform: scale(1.05);
}
h2 {
    text-align: center;
    font-size: 40px;
    float: center;
}
header a {
    font-size: 30px;
    margin-left: 48%;
    text-decoration: none;
}
header a:hover {
    color: red;
    text-decoration: underline;
}
