*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

:root {
    --color-principal: #9e1132;
    --color-secundario: #f2aebc;
    --color-fondo: #f2dcdb;
    --espacio-chico: 0.5rem;
    --espacio-medio: 1rem;
    --borde-redondeado: 8px;
    --sombra-suave: 0 4px 8px rgb(0,0,0,0.5);
}

body{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: #f2dcdb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header{
    background-color: #f2aebc;
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 10px 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    nav ul{
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

nav a{
    display: block;
    background-color: #9e1132;
    color: #f2dcdb;
    text-decoration: none;

    padding: 15px 25px;
    font-weight: bold;
    letter-spacing: 2px;

    transition: 0.3s;
}

nav a:hover{
    background-color: #000000;
}
}

section{
    background-color: #f2aebc;
    padding: 25px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 10px 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1,h2{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif ;
    color: #9e1132;
    margin-top: 30px;
    margin-bottom: 30px;
}


a{
    color: #9e1132;
}