@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(to right, #0052D4, #4364F7, #6FB1FC);
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contenedor de la página principal */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

/* Estilo del encabezado */
header {
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
}

p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Botones */
.buttons {
    margin-top: 20px;
}
.btn {
    display: inline-block;
    background: #ffffff;
    color: #0052D4;
    padding: 12px 24px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: #000;
    color: #ffffff;
}


/* Pie de página negro */
footer {
    background: #000;
    color: #fff;
    padding: 20px;
    position: relative;
    width: 100%;
}


/* Contenedor principal de la página "Quién soy" */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Caja que contiene el texto */
.about-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    width: 70%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Texto dentro de la caja */
.about-box p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #f1f1f1;
    margin-bottom: 15px;
}

/* Enlace dentro del texto */
.about-box a {
    color: #00aaff;
    text-decoration: none;
    font-weight: bold;
}

.about-box a:hover {
    color: #ffffff;
}

/* Botón de volver */
.about-container .btn {
    margin-top: 20px;
}
