body {
    margin: 0%;
    background-color: #19041f;
}

section {
    background-color: #00000070;
    border-radius: 20px;
    margin: 5%;
    display: flex;
    color:antiquewhite;
    flex-direction: column;
    align-items: center;
}

.page {
    display: flex;
    flex-direction: column;
    font-family: Arial;
    background-color: #19041f;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    color: #84278cf5
}

.form-contactpagina {
    width: 60%
}

.form-contactpagina__inputelement {
    display: flex;
    flex-direction: row;
    margin: 15px 0px 15px 0px
}

.fx-col {
    flex-direction: column;
}

.fx-row {
    flex-direction: row;
    justify-content: center;
}

.fx-row > * {
    margin-left: 5%;
    margin-right: 5%;
}

.error-message {
    color: red;
    font-size: 12px;
}

input.nav-button {
    background-image: linear-gradient(#7f3b86, #460f40);
    border: none;
    color: antiquewhite;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
}

input.nav-button:disabled {
    background-image: linear-gradient(#5a2a5f, #2c0a28);
    border: none;
    color: rgb(199, 188, 173);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 16px;
}

input.nav-button:hover {
    background-image: linear-gradient(#460f40, #7f3b86);
}

input.nav-button:hover:disabled {
    background-image: linear-gradient(#2c0a28, #5a2a5f);
}

.feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: linear-gradient(#7f3b86, #460f40);
    color: antiquewhite;
    position: fixed;
    bottom: 5%;
    left: 25%;
    right: 25%;
    padding: 10px;
    margin: 5px;
    border: 2px solid black;
    border-radius: 15px;
}

.hide{
    display: none;
}

.show{
    display: flex;
}

@media only screen and (min-width: 800px) {

}