@font-face
{
    font-family: 'LCD';
    src: url('fonts/LCD.eot');
    src: url('fonts/LCD.eot?#iefix') format('embedded-opentype'),
        url('fonts/LCD.woff2') format('woff2'),
        url('fonts/LCD.woff') format('woff'),
	url('fonts/LCD.ttf') format('truetype'),
        url('fonts/LCD.svg#LCD') format('svg');
    font-weight: bold;
    font-style: normal;
}
@font-face
{
    font-family: 'Tomorrow';
    src: url('fonts/Tomorrow-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face
{
    font-family: 'Tomorrow';
    src: url('fonts/Tomorrow-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
}
@font-face
{
    font-family: 'Tomorrow';
    src: url('fonts/Tomorrow-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face
{
    font-family: 'Tomorrow';
    src: url('fonts/Tomorrow-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face
{
    font-family: 'Cutmark';
    src: url('fonts/Cutmark-CnXBold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
html
{

}
body
{
	background-color: #020924;
	text-align:justify;
	overflow: inherit;
    height:100%;
	/*background: radial-gradient(#390500,#020924);*/
}

    body:before
    {
        content: "";
        display: block;
        position: fixed;
        left: 0;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: -10;
        background: url('https://www.gimnastica.es/css/fondos/fondo240924.png') no-repeat center center, linear-gradient(180deg, rgba(2,9,36,1) 15%, rgba(89,15,8,1) 95%);
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
    }

.myBtn
{
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 50px; /* Place the button at the bottom of the page */
    right: 20px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #ce6371; /* Set a background color */
    opacity: 0.75;
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 24px; /* Increase font size */
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

    .myBtn:hover
    {
        background-color: #982938; /* Add a dark-grey background on hover */
        opacity: 1;
    }

.cabecera
{
    position: fixed; 
    width: calc(100% - 26px);
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    margin: 0px auto 0px auto;
    top: 0px; 
    z-index: 97; 
    border: 0px solid rgb(4, 43, 148); 
    outline: none; 
    color: white; 
    cursor: pointer; 
    padding: 0px 5px; 
    font-size: 24px; 
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.titulo
{
    position:absolute;
    margin: 15px auto 0px 0px;
    max-width: 360px;;
    padding:5px 5px;
    text-align:left;
    z-index:1000;
    border: 0px solid rgb(4, 43, 148);
}

.cuerpo
{
    top: 0px;
    width: 98%;
    max-width:1700px;
    min-height:500px;
    margin: 105px auto 0px auto;
    text-align:justify;
    border: 0px solid #bdbdbd;
    padding: 0px 0px 0px 0px;
    position:relative;
    z-index:1;
    color:#ffffff;
    font-family:'Tomorrow';
    font-size:1.2rem;
    text-align:center;
}

.contenido
{
    position:relative;
    max-width: 1000px;
    min-height:200px;
    margin: 10px auto;
    border-radius: 5px;
    border: 0px solid #020924;
    background-color:rgba(255, 255, 255,0.5);
    padding: 10px;
    width: calc(100% - 20px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
    color:#000000;
    font-family:'Tomorrow';
    font-size:1.2rem;
    text-align:left;
}

    .contenido li
    {
        margin-top:1rem;
    }

.boton
{
    max-width:270px;
    top: 0px;
    margin: 10px;
    padding: 5px;
    text-align:center;
    color:#ffffff;
    font-family: 'Tomorrow';
    font-weight:500;
    font-size:1rem;
    background-image: linear-gradient(to right, #590f08 0%, #020924  50%, #590f08  100%);
    background-size: 200% auto;
    transition:0.5s;
    border: 0px dotted #ffffff;
    border-radius: 5px;
    position:relative;
    cursor:pointer;
    filter: drop-shadow( 0px 0px 3px rgba(255, 254, 254, 0.7));
    -webkit-appearance: none;
    -webkit-border-radius:5px;
    outline: none;
}
    .boton:hover
    {
        background-position: right center;
        text-decoration:none;
        transform: scale(1.05);
    }
    .boton:active{
        top:2px;
        left:2px;
        box-shadow: 0px 0px 0px 0px #eee;
        outline-color: transparent; 
        outline-style: none;
    }