@charset="utf-8";

/* fuente importada de google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: -webkit-fill-available;
}

body {
    background-color: rgb(124,0,0,0.8);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    font-family: "poppins", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

header .barra {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: rgb(124,0,0);
    align-items: center;
    font-family: 'Poppins';
}

#logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

header img {
    width: 300px;
}

.caja {
    display: flex;
    flex-direction: column;
    width: 55vh;
    height: 400px;
    background: white;
    color: #fff;
    top: 51%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 70px 30px;
    border-radius: 8px;
}

.caja h1 {
    font-size: 24pt;
    text-align: center;
    color: rgb(124, 0, 0);
}

.caja h4 {
    font-size: 12px;
    text-align: center;
    color: black;
}

#advertencia {
    display: flex;
    justify-content: center;
}

#advertencia img {
    width: 80px;
    padding-bottom: 10px;
}

#confirmacion {
    padding: 1em;
}

#secciones {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#confirmacion h4 {
    display: flex;
    border-top-style: none;
    border-left-style: none;
    border-right: none;
    font-size: 10pt;
    padding-bottom: 20px;
    color: black;
}

#secciones ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: .1em;
    padding-bottom: .2em;
    width: 70%;
}

#secciones li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .1em;
    margin-left: .1em;
    width: 50%;
    height: 2.8em;
    font-size: 10pt;
    color: white;
    cursor: pointer;
    border-radius: 100px;
}

#secciones a {
    color: white;
    cursor: pointer;
}

#secciones .aceptar {
    background-color: rgb(124,0,0);
    width: 100%;
    margin-bottom: 10px;
}

#secciones .reserva_nueva {
    background-color: rgb(0,0,20,0.5);
    width: 100%;
}

footer {
    display: flex;
    justify-content: center;
    background-color: rgb(124,0,0);
    color: white;
    font-size: .6em;
    padding: 10px;  
    font-family: 'Poppins'; 
}
footer a {
     text-decoration: none;
    color: beige;   
}
