.hidden {
    display: none;
}

.centered {
    text-align: center;
}

.outlined {
    outline: 1px solid lightgray;
}

.logo {
    width: 100px;
    height: 200px;
}

 @media screen and (max-width: 500px) {

    .heading {
        background-image: url(../images/Funonice.png);
        background-size: 500px;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: -20px;
        height: 274px;
        border-bottom: 2px solid navy;
        background-color: rgb(158,187,205);
    } 

}

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

    .heading {
        background-image: url(../images/Funonice.png);
        background-size: 1000px;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: -20px;
        height: 500px;
        border-bottom: 2px solid navy;
        background-color: rgb(158,187,205);
    } 

}

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

    .heading {
        background-image: url(../images/Funonice.png);
        background-size: 2000px;
        background-position: center;
        background-repeat: no-repeat;
        margin-top: -20px;
        height: 500px;
        border-bottom: 2px solid navy;
        background-color: rgb(158,187,205);
    } 

}


.content {
    font-family:Avenir, Corbel, sans-serif;
    padding: 20px;
}

.hidden-h1 {
    position: absolute;
    top: -200px;
    left: -200px;
}

label {
    font-weight: bold;
}

input, select {
    all: unset;
    border-radius: 5px;
    border: 0.5px solid lightgray;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
}
 
button {
    all: unset;
    border-radius: 5px;
    padding: 10px;
    background-color: lightsteelblue;
    border: 1px solid navy;
    margin-bottom: 10px;
    cursor: pointer;
}

button:hover {
    background-color: royalblue;
    color: white;
}

button:disabled {
    background-color: whitesmoke;
    border: 0.5px solid lightgray;  
    color: lightgrey;
}

.abort-link {
    all: unset;
    border-radius: 5px;
    padding: 10px;
    background-color: whitesmoke;
    border: 0.5px solid lightgray;  
    display: inline-block;
}

.abort-link:hover {
    background-color: whitesmoke;
    color: lightsalmon;
    border-color: darkgoldenrod;
    cursor: pointer;
}

.instruction {
    margin-top: 10px;
    color: darkred;
}

.review-label {
    font-weight: bold;
    margin: 0;
}

.review-value {
    margin: 0 0 10px 0;
}

#review-sheet {
    padding: 20px;
    border-radius: 5px;
    border: 1px dotted grey;
    margin-bottom: 20px;
    background-color: whitesmoke;
}