*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    
}
header{
    width: 100;
    background-color: rgb(246, 244, 247);
    margin: auto;
    height: 80px;   
}
header h1{
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    padding: 0px 5px;
    text-decoration: none;
    color: black;
}
body{
    background-position: 0px 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../Imagenes/Fondo2.jpeg');
    background-attachment: fixed;
}
section{
    text-align: center;
}
section h1{
    text-align: center;
    font-size: 15px;
}
.menu2 li{
    width: 100;
    text-align: center;
    padding: 0px 200px;
    margin: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
    display: block;
}.menu2 li a{
    padding: 20px 15px;
    background-color: rgb(240, 154, 243);
    transition: all .1s ease-in-out;
    border: 1px ;
    display: block;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);;
    border-radius: 10px;
    margin: 10px;
    margin-bottom: 2px;
    text-decoration: none;
    color: #fff;
}
.menu2{
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 2px;
}
.menu2 li a:hover{
    cursor: pointer;
    background-color: #bdb0bd;
}
.botones{
    justify-content: space-around;
    align-items: center;
    min-height: auto;
    box-sizing: content-box;
    display: flex;
}

.botones a{
    margin: 10px;
    margin-bottom: 3px;
    text-decoration: none;
    font-size: 30px;
    width: 60px;  
    height: 60px;
    line-height: 60px; 
    text-align: center;
    background-color: #314652;
    color: #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
    transition: all .5s ease-in-out;

}
.botones a:hover{
    transform: scale(1.2);
}
.botones a h2{
    margin-top: 1px;
    font-size: 10px;
}