@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');


html{
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'League Spartan', sans-serif;
}

#loggedIn{
    display: none;
}

body{
    max-width: 1200px;
    margin-inline: auto;
    padding: 80px 0;
}

.headerWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header{
    padding-bottom: 40px;
}

header img{
    max-height: 80px;
}

footer{
    display:flex;
    justify-content: center;
    padding: 80px 0;
}

footer a{
    min-width: 100%;
    display: flex;
    justify-content: center;
}

footer img{
    max-height: 100px;
}

.wrapper{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
}

.wrapperRow{
    display: flex;
    justify-content: space-between;
}

.graphicImage{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    margin-inline: auto;
}

hr{
    margin: 40px 0;
}

input[type="text"],input[type="number"], textarea{
    padding: 10px;
    border-radius: 5px;
    min-width: 45%;
    border: 1px solid #ccc;
    outline: none;
    transition: all 0.3s;
}

textarea{
    resize: none;
    min-width: 100%;
}

input[type="text"]:focus,input[type="number"]:focus{
    outline: none;
    border: 1px solid #1063ff;
}

button,
input::file-selector-button{
    padding: 12px 18px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover,
input::file-selector-button:hover{
    background: #1063ff;
    border: 1px solid #1063ff;
    color: white;
}

#createHtml{
    display: none;
}

/*Tabla*/
thead{
    text-align: left;
}

thead th:first-letter{
    text-transform: uppercase;
}

tbody:before {
    content:"@";
    display:block;
    line-height:20px;
    text-indent:-99999px;
}