body{
    margin:0;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}


header{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    padding: 2em;
    flex-wrap: wrap;
}

header img{
    height: auto;
    width: 20rem;
}

main{
    padding-top: 30px;
    padding-bottom: 50px;
}

h4{
    color: green;
}


.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    padding-top: 100px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    max-height: 90vh;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}
    
    /* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
    
#close-modal{
    float: right;
    background-color: red;
    color: white;
    font-weight: bolder;
    font-size: larger;
    border-style: none;
    width:3em;
    height: 2em;
    border-radius: 10px;
    cursor: pointer;
}
    
#copiar-texto{
    background-color: green;
    color: white;
    font-weight: bolder;
    font-size: medium;
    border-style: none;
    width:8em;
    height: 2em;
    border-radius: 10px;
    cursor: pointer;
}

.close:hover,.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.center-h{
    display: flex;
    justify-content: center;
    align-items: center;
}
    
.center-c{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


select{
    background-color: blue;
    color:white;
    border-style: none;
    border-radius: 10px;
    padding: 1em;
    font-weight: 600;
    cursor: pointer;
}

input[type=reset]{
    background-color: green;
    color: white;
    border-style: none;
    border-radius: 15px;
    width:200px;
    height:100px;
    cursor: pointer;
}

input[type=reset]:hover{
    background-color: darkgreen;
}


#conteudo{
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.grade{
    display: grid;
    row-gap: 10px;
    grid-template-columns: 40% 40%;
}

.card-dados{
    margin: 30px 0;
    background-color: white;
    border-radius: 20px;
    width:60rem;
    max-width: 75vw;
    padding: 1.5em;
    text-align: center;
}

.card-dados form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 100%;
    width: 100%;
    height: auto;
    gap:15px;
    flex-wrap: wrap;
}
.card-dados form input{
    width: 100%;
    height: 1.5em;
    font-size: large;
}

.card-dados form label{
    font-size: 1em;
}

.card-dados button{
    background-color: blue;
    border-style: none;
    border-radius: 20px;
    padding: 0.5em;
    color: white;
    font-weight: bold;
    width:200px;
    height: 50px;
    cursor: pointer;
}

.card-dados button:hover{
    background-color: darkblue;
}

footer{
    position:fixed;
    left: 0;
    bottom: 0;
    padding: 0.5em;
    background-color:black;
    width: 100%;
    color:white;
}

footer p{
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    width: 100%;
}

@media only screen and (max-width:600px) {
    header{
        justify-content: center;
    }
}
