/* Importar fuente */
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700');

*{
    font-family: Poppins;
    box-sizing: border-box;
    padding:0;
    margin: 0;
}

.main-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: azure;
    min-height: 100vh;
}

header{
    background-color: aqua;
    width: 100%;
}

footer{
    justify-self: flex-end;
    background-color: aqua;
    width: 100%;
    height: 110px;
    padding-top: 10px;
    margin-top: 10px;
}

.menu{
    display: flex;
    flex-direction: row;
    row-gap: 10px;
}

.menu ul{
    display: flex;
    flex-direction: row;
    row-gap: 10px;
}

.menu ul li{
    list-style: none;
    display: inline;
    padding: 10px;
}

.menu a{
    text-decoration: none;
}

.center{
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

h1{
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

.exito{
    font-weight: bold;
    color:rgb(109, 218, 0);
    text-align: center;
}

.error{
    font-weight: bold;
    color: crimson;
    text-align: center;
}

.modalFondo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.modalContainer{
    width: 550px;
    height: 250px;
    border-radius: 12px;
    background-color: #fbbc04;
    padding: 20px;
}

.botonCerrarContainer{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: center;
}

.botonCerrar{
    background-color: rgb(203, 42, 42);
    color: aliceblue;
    font-weight: bold;
    width: 30px;
    border-radius: 5px;
    text-align: center;
}

.contenidoModal{
    display: flex;
    flex-direction: column;
    background-color: aliceblue;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
    justify-content: center;
    height: 180px;
}