/*Configuracion por defecto*/
body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    background-color: #000000; /* Fondo negro */
    color: #FFFFFF; /* Texto blanco */
    display: flex;
    flex-direction: column;
    height: 100vh;
    text-align: justify;
}
/*Configuracion de la pagina*/
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.FotoPerfill{
    background-image: url(../img/FotoPerfil.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 200px;
    margin: 0 auto;
}
section {
    width: 100%;
    height: 100%;
    border: 2px solid #FFD700; 
    padding: 1em;
    margin: 1em;
    background-color: #1a1a1a;
    overflow-y: auto;
}

h1, h2, h3,p{
    text-align: center;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5); /* Sombra de texto */
}
/*Configuracion del iframe para que se vea mas agradable*/
iframe {
    display: block;
    margin: 20px auto;
    border: 2px solid #FFD700;
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 800px;
    height: 450px;
}
/*Quita los colores feos de el enlace*/
a {
    text-decoration: none;
    color: inherit;
}