* {
    font-family: "Bahnschrift SemiCondensed";
    font-size: 16px;
    line-height: 16px;
    margin: 0;
}

body {
    width: 500px;
    margin: auto;
}

h1 {
    font-family: "Bahnschrift";
    font-weight: bold;
    color: #663399;
    text-align: center;
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 5px;
}

h1 + p {
    text-align: center;
    margin-bottom: 20px;
}

form {
    background-color: #C6B3D9;
    padding: 1px 20px;
    border-radius: 0 10px 10px 10px;
}

div {
    margin: 15px 0;
}

::placeholder {
    color: #A080C0;
}

input[type="text"], input[type="email"], input[type="number"], textarea, select {
    background-color:#663399;
    color: white;
    border-width: 0px;
    border-radius: 0 5px 5px 5px;
    width: 100%;
}

/* option {
    margin: 0;
    padding: 0;
} */

.block {
    display: block;
}

div > p {
    margin: 0
}

textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 48px;
    max-height: 480px;
}

input[type="submit"] {
    border: none;
    border-radius: 0 5px 5px 5px;
    font-weight: bold;
    background-color: white;
    color: #663399;
}

input[type="submit"]:hover {
    background-color: #A080C0;
}

input[type="submit"]:active {
    background-color: #663399;
    color: white;
}