* {
    margin: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.wrapper {
    display: grid;
    gap: 1em;
    background-color: aliceblue;
    place-items: center;
}
.centrado {
    place-items: center center;
}

.header {
    display: grid;
    text-align: center;
    width: 100vw;
}

.content {
    display: grid;
    width: 80vw;
    margin: auto
}

.foot {
    display: grid;
    width: 80vw;
}

.form-grid {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 1em;
    width: 80%;
}

.ancho {
    grid-column: 1/-1;
}
.oculto {
    width: 0px;
    height: 0px;
}
label {
    font-style: italic;
}
input {
    width: 100%;
    border-radius: 2px;
}

select {
    width: 100%;
    border-radius: 2px;
}

.boton {
    font-weight: 600;
    font-size: large;
    border-radius: 4px;
    background-color: cornflowerblue;
}
h1 {
    font-weight: bold;
    color: rgb(46, 46, 46);
}
table {
    border-collapse: collapse;
    width: 100%;
}
th {
    border: solid 2px rgb(38, 59, 59);
    padding: 0.4em;
    background-color: cadetblue;
    text-align: center;
}
td {
    border: solid 2px rgb(38, 59, 59);
    padding: 0.4em;
    text-align: center;
}
tr:nth-child(odd) {
    background-color: rgb(208, 239, 243);
}

.header .panel {
    display: grid;
    width: 100vw;
    background-color: rgb(215, 244, 255);
    height: 15vh;
    place-items: center;
    min-height: fit-content;
    z-index: 9999;
    position: fixed;
}
.header .panel .menu {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
    justify-content: center;
    align-items: center;
    gap:5em;
    width: 100vw;
    position: fixed;
    z-index: 9999;
}
.header .panel .menu .menu-item a img {
    width: 5vw;
}
.menu {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: auto;
    justify-content: center;
    align-items: center;
    gap:20vw;
}
.content .menu img {
    width: 15vw;
    min-width: 80px;
}

.menu img {
    transition: ease 0.5s;
}
.menu img:hover{
    transform: scale(1.20);
}

.boton:hover {
    cursor: pointer;
}

.foot img {
    width: 20vw;
}
.izquierda {
    justify-items: start;
}

td img {
    transition: ease 0.5s;
}
td img:hover{
    transform: scale(1.20);
}

.panel + * {
    margin-top: 100px;
}
.header + * {
    margin-top: 10vh;
}