section {
    background-color: #fff;
    padding: 2%;
    border-radius: 8px;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 100%;
}
label.blocky{
    padding: 0% 1%;
    display: block;
}

input[type="text"],
input[type="email"],
textarea {
    width: 80%;
    padding: 3%;
    font-size: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: white;
    color: black;
}

textarea {
    height: 150px;
    resize: vertical;
}

button {
    padding: 1% 1%;
    font-size: 90%;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #005fa3;
}

button.basic {
    padding: 0% 1%;
    font-size: 100%;
    background-color: #00000000;
    color: black;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}