body {
    background-color: #CF0E10;
    color: #8e8e8e;
    font-family:"Calibri", sans-serif;
}

header {
    align-items: center;
    text-align: center;
    background-color: #CF0E10; /* Color de la barra de navegación */
    top: 0;
    margin-top: -10px;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff; /* Color del texto en la barra de navegación */
}

main {
    background: #FFFFFF;
    border-radius: 40px;
    position: fixed;
    /* or absolute */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    height: 75%;
    width: 80%;
    
    margin-top: .5%;
    
    overflow-x: hidden;
    overflow-y: auto;
    text-align: justify;
}

footer {
    background-color: #CF0E10; /* Color de fondo del pie de página */
    position: fixed;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    color: #ffffff; /* Color del texto en el pie de página */
    bottom: 0;
}

.title{
    font-weight: bold;
    color: #FFFFFF;
}

h1{
    font-weight: bold;
    color: #cf0e10;
}

h2{
    font-weight: normal;
    color: #cf0e10;
}

h3{
    font-weight: normal;
    color: #cf0e10;
}

hr {
    border: 1px solid #CF0E10;
}

b{
    color: #4e4e4e;
}

a{
    color: #ec161a;
}

@media (min-width: 1px) and (max-width: 767px) {
    main { padding: 20px;}
    .title{ font-size: x-large; text-align: center; }
    h1 { text-align: justify;}
    h2 { text-align: left;}
    h3 { text-align: left;}
}

@media (min-width: 768px) and (max-width: 1023px) {
    main { padding: 50px;}
    .title{ font-size: xx-large; text-align: center; }
    h1 { text-align: justify;}
    h2 { text-align: justify;}
    h3 { text-align: justify;}
}

@media (min-width: 1024px) {
    main { padding: 20px;}
    .title{ font-size: xx-large; text-align: center; }
    h1 { text-align: justify;}
    h2 { text-align: justify;}
    h3 { text-align: justify;}
}