@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body{
    background: url("../images/fondo.jpg") repeat;
}

#contenedor{
    font-family: 'Roboto';
    font-size: 1.5rem;
    overflow: hidden;
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 5px #D5DBDB;
    margin: 0px auto;
    margin-top: 50px;
}

#nav{
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 20px;
    width: 80%;
    margin: 0px auto;
    text-align: center;
}

#nav li{
    height: 50px;
    line-height: 50px;
    list-style: none;
    background: #000;
    width: 100%;
    border-radius: 10px;
    transition: all 0.1s ease;
}


#nav li:hover{
    background: #2E86C1;
    transform: scale(1.1);
}

#nav li a{
    display: block;
    text-decoration: none;
    color: #fff;
    height: auto;
    width: auto;
    font-size: 1.5rem;
}

.entrada{
    outline: none;
    height: 50px;
    font-size: 1.3rem;
    border-radius: 30px;
    border: none;
    background: #eee;
    padding-left: 20px;
}