body {
    font-family: sans-serif;
    font-size: 16pt;
    text-align: center;
    background-image: url('assets/kat.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #000000;
    border-radius: 8px;
    background-color: rgb(230, 229, 217);
}

p {
    text-align: center;
    font-size: 28px;
    font-family: fantasy;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 1px black;
    font-weight: bold;
}

a {
    text-align: center;
    font-size: 28px;
    font-family: fantasy;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 1px blue;
    font-weight: bold;
}

h1 {
    text-align: center;
    font-size: 50px;
    font-family: fantasy;
    -webkit-text-fill-color: black;
    -webkit-text-stroke: 0.1px darkgrey;
    font-weight: bold;
}

.message p {
    text-align: center;
    font-size: 28px;
    font-family: fantasy;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 0.1px black;
    font-weight: bold;
}

.message a {
    text-align: center;
    font-size: 28px;
    font-family: fantasy;
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 1px blue;
    font-weight: bold;
}

.message:empty {
    display: none;
}


label {
    display: block;
    margin-top: 10px;
}

input, select, button {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
}

button {
    background-color: #308ef1;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #114cec;
}

fieldset {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: 20px;
}

legend {
    font-weight: bold;
    font-size: 1.2em;
}

.error-message {
    background-color: rgb(245, 244, 237);
    color: rgb(88, 4, 4);
    border: 1px solid black;
    font-weight: bold;
    padding: 10px 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}