/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

*{
    box-sizing: border-box;
}


@font-face {
    font-family: 'MacondoSwashCapsRegular';
    src: url('fonts/MacondoSwashCapsRegular.eot');
    src: url('fonts/MacondoSwashCapsRegular.eot') format('embedded-opentype'),
         url('fonts/MacondoSwashCapsRegular.woff2') format('woff2'),
         url('fonts/MacondoSwashCapsRegular.woff') format('woff'),
         url('fonts/MacondoSwashCapsRegular.ttf') format('truetype'),
         url('fonts/MacondoSwashCapsRegular.svg#MacondoSwashCapsRegular') format('svg');
}


body {
    font-family: 'MacondoSwashCapsRegular', Times, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: #600000;
    background-image: url(images/red.png);
}
.container {
    text-align: center;
}
img {
    max-width: 800px;
    width: 95%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h2 {
    font-size: 1.5em;
    margin-top: 15px;
    color: #e0e0e0;
   

}

h3 {
    font-size: 1.0em;
    margin-top: 15px;
    color: #ffffff;
    line-height: 22px;
    display: inline-block;
    max-width: 80%;
}

p {
    display: block;
    background-color: #133f5e;
    padding: 25px;
    border-radius: 15px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.0em;
    margin-top: 10px;
    color: #ffffff;
    width: 80%;
    max-width: 800px;
    line-height: 22px;
}
button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #f0f0f0;
    color: #202020;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #133f5e;
    color: #ffffff;
}

.logo {
    width:100%;
    max-width: 150px;
    border-radius: 10px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);

} 

.banner {
    width: 95%;
    min-height: 60vh;
    background-image: url(images/fond01.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.button {
    display: block;
    padding: 25px;
    background-color: #f0f0f0;
    color: #202020;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.button:hover {
    background-color: #133f5e;
    color: #f0f0f0;
}

.legales {
    display: inline;
    background-color: none;
    color: #808080;
    font-size: 9px;
    text-decoration: none;
}

.title {
    position: absolute;
    display: block;
    font-size: 50px;
    background-color: #133f5e;
    color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    top: 550px;
    z-index: 6000;
}


#randomVideo {
    width: 100%;
    max-width: 700px;
    border-radius: 50%;
    border: #fff 3px solid;
    margin-top: 50px;
}


@media screen and (max-width: 550px) {




    .banner {
        width: 95%;
        min-height: 50vh;
        background-image: url(images/fond01.jpg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }


#randomVideo {
    width: 100%;
    max-width: 400px;
}

.title {
    position: absolute;
    display: block;
    font-size: 30px;
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    top: 350px;
    z-index: 6000;
}

}