body {
    font-family: 'Source Sans Pro', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(images/overlay.png), linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
    background-size: cover;
    background-attachment:fixed;
    display:grid;
    place-items: center;
    box-sizing: border-box;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
}

.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 0 15px;*/
    margin-top: 20px;
    display:grid;
    place-items: center;
}

.container1{
     background-color: #fff;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 50%;
    height: 300px;
  /*  padding: 1rem;*/
    padding-left: 4em;
    padding-right: 4em;
    border-top-left-radius: 2em;
    border-top-right-radius: 2em;
    justify-content: center;

}
.container2{
   background-color: #fff;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 50%;
    height: 300px;
  /*  padding: 1rem;*/
    padding-left: 4em;
    padding-right: 4em;
    border-bottom-left-radius: 2em;
    border-bottom-right-radius: 2em;
    justify-content: center;
    padding-top: 2em;
}
.input-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

input[type="text"] {
    width: 90%;
    height: auto;
    padding: 1rem;
    margin: 5px 0;
    border: 3px solid #000000;
    border-radius: 4px;
    font-size: 2rem;
    text-align: center;
}

input::placeholder {
    color: #888686cb;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

button {
    padding: 10px 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

h1 {
    margin-bottom: 20px;
    font-size: 40px;
    color: #5f4d93;
    font-family:"Source Sans Pro", Helvetica, sans-serif;
  text-shadow:
    0	0	10px	rgba(0, 255, 255, 0.5),
    0	0	20px 	rgba(0, 255, 255, 0.5),
    0	0	30px	rgba(0, 255, 255, 0.5),
    0	0	40px	rgba(0, 255, 255, 0.8);
    
} 

h2 {
    color: #fff;
}

h3 {
    text-align: center;
    font-size: 25px;
    color: #fff;
    font-family:"Source Sans Pro", Helvetica, sans-serif;
}

a {
    color: #fff;
    text-decoration: underline;

}
p {
    font-size: 20px;
    color: #fff;
    font-family:"Source Sans Pro", Helvetica, sans-serif;
}

.footer-container {
    max-width: 1200px; /* Ancho máximo del contenedor */
    margin: 0 auto; /* Centrar horizontalmente */
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px; /* Añadir margen superior */
    padding:  0em 3em 5em;
}

.footer-column {
    flex: 1;
    margin: 10px;
   justify-content: center;
    /* min-width: 300px; */
}

iframe {
    width: 100%;
    height: auto;
}

.iframe-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3em;
}

@media (max-width: 768px) {
    .input-container {
        width: 100%;
    }

    input[type="text"] {
        font-size: 1.5rem;
    }

    button {
        font-size: 14px;
    }
}