body {
    font-family: 'Baskerville', serif;
    background-color: #219ebc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden; /* Para asegurar que los círculos no generen barras de desplazamiento */
}

header h1 {
    color: #023047;
    font-size: 7rem;
    margin-bottom: 20px;
}

.amatic-sc-regular {
    font-family: "Amatic SC", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.amatic-sc-bold {
    font-family: "Amatic SC", sans-serif;
    font-weight: 700;
    font-style: normal;
}

main {
    display: flex;
    gap: 20px;
}

button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background-color: #023047;
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 20px; /* Redondeo de los botones */
}

button:hover {
    background-color: #023047;
    opacity: 0.8;
}

/* Círculos decorativos */
.circle {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.circle:nth-child(1) { width: 50px; height: 50px; top: 10%; left: 15%; }
.circle:nth-child(2) { width: 30px; height: 30px; top: 20%; left: 60%; }
.circle:nth-child(3) { width: 70px; height: 70px; top: 50%; left: 80%; }
.circle:nth-child(4) { width: 40px; height: 40px; top: 70%; left: 10%; }
.circle:nth-child(5) { width: 60px; height: 60px; top: 85%; left: 50%; }
.circle:nth-child(6) { width: 20px; height: 20px; top: 40%; left: 30%; }
.circle:nth-child(7) { width: 80px; height: 80px; top: 15%; left: 80%; }
.circle:nth-child(8) { width: 25px; height: 25px; top: 65%; left: 20%; }
.circle:nth-child(9) { width: 45px; height: 45px; top: 30%; left: 70%; }
.circle:nth-child(10) { width: 55px; height: 55px; top: 5%; left: 40%; }
