html, body {
  overscroll-behavior: none;
}

body{
    background-color: burlywood;
}

main{
    margin: 0;
    padding: 0;
    position: relative;
}

h1{
    font-family: Impact;
    color: grey;
    font-size: 300%;
    margin: 0;
    text-align: center;
    padding-top: 2%;
    margin-bottom: -0.4em;
}

p{
    font-size: small;
    text-align: center;
    padding-top: 0.5em;
    font-style: italic;
}

h3{
    font-size: large;
    color: #686d20;
}

#formularios{
    display: flex;
    justify-content: space-around;
}

#plusDNI{
    text-transform: uppercase;
}

#plusButtonTitle{
    font-style: oblique;
    color: darkmagenta;
}

#datosTitle{
    display: flex;
    justify-content:space-between;
    align-items: center;
}

form ul{
    margin: 0;
    padding: 0;
}

form ul li{
    list-style: none;
    padding: 0.5em;
}

.required:after {
    content:"*";
    color:rgb(255, 0, 170);
    font-weight:200;
}

.text{
    width: 100%;
}

#formTitles{
    font-weight: bolder;
}

hr{
    border-top: 4px dotted #686d20;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    padding: 0.3vh;
    width: 50%;
}

button{
    color: palevioletred;
    font-weight: bold;
    width: 10em;
    border: 0;
    border-radius: 10px;
    margin: 0 auto;
    margin-left: 46vw;
    cursor: pointer;
    display: block;
    margin: 0 auto;
}


.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.hidden {
    display: none;
}

.modal-content {
    background: linear-gradient(pink 45%, palevioletred);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.modal-content h3{
    font-size: 1.3em;
    text-shadow: 0px 0px 14px rgb(182, 26, 86);
}


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

    #formularios{
        display: flex;
        flex-direction: column;
        padding: 0 1.5em 0 1em;
    }

    #plus{
        padding-top: 2em;
    }
}