body, textarea, button {
    font-family: "Playfair Display", serif;
}

h1 {
    color: blue;
    text-align: center;
    font-size: 48px;
}

p {
    color: black;
    font-size: 17px;
    text-align: center;
}

#feedback-form {
    width: 60%;
    margin: 50px auto;
    background-color: #aacbff;
    padding: 20px;
    box-sizing: border-box;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    height: 100px;
    resize: none;
    border-radius: 7px;
    border: solid 2px #78a1cb;
    padding: 10px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4da6ff;
    color: white;
    font-size: 23px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    background-color: #328314;
}
body, textarea, button {
    font-family: "Playfair Display", serif;
}

#feedback-form {
    width: 60%;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    background-color: #aacbff;
}

textarea, input[type="text"], input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4da6ff;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 12px;
}

button:hover {
    background-color: #328314;
}

#thankyouMessage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: blue;
    display: none;
}
#goBackButton {
    background-color: #4da6ff;
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    display: none; /* initially hidden */
}
