@import url('https://fonts.googleapis.com/css2?family=Saira:wght@700&display=swap');

body {
    background-color: #000056;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

img {
    max-width: 40%; /* Reduce aún más el tamaño del logo */
    height: auto;
    display: block;
    margin-bottom: 0; /* Elimina el espacio entre el logo y el texto */
}

h1 {
    font-family: 'Saira', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-top: 0; /* Elimina el espacio entre el logo y el texto */
    text-align: center;
    letter-spacing: 6px; /* Aumenta aún más el interletrado */
}
