body{
    background-color: rgb(169, 223, 255);
   font-size:18px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #4a148c;
}

.contenedor1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
}

.btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
}

main {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header{
background-color: blueviolet;
color: beige;
text-align: center;
padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.Menu {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.Menu a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.Menu a:hover,
.Menu a.active {
    background-color: #ab47bc;
}

footer{
    background-color: blueviolet;
    color: beige;
text-align: center;
padding: 20px;
margin-top: 40px;
    width: 100%;
    bottom: 0;
    position: relative;
    border-top: 3px solid #ab47bc;
}
