@charset "UTF-8";

@font-face {
    font-family: "SourGummy";
    src: url("../font/SourGummy-VariableFont_wdth.ttf");
}

/* etiquetas 


*/

.displayFlex_padre {
    padding: 5px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}


.letraCapital {
    font-size: 2em;
    font-weight: bolder;
}

.clock {
    position: relative;
    width: 340px;
    height: 340px;
    border: 1px black solid;
    border-radius: 50%;
    background-image: url(../img/arena.jpeg);
    background-size: cover;
    box-shadow: 3px 3px 2px 3px rgba(98, 95, 95, 0.2);
}

.clock .center {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ba1818;
    box-shadow: 5px 5px 5px 0px rgba(221, 16, 16, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hand {
    position: absolute;
    width: 40%;
    height: 6px;
    background: #333;
    top: 50%;
    left: 50%;
    transform-origin: 0% 50%;
    transform: rotate(0deg);
    transition: transform 0.05s cubic-bezier(0.4, 2.3, 0.3, 1);

}

.hand.hour {
    width: 35%;
    height: 8px;
    background: #131313;
    box-shadow: 3px 3px 2px 2px rgba(57, 55, 55, 0.2);
}

.hand.minute {
    height: 6px;
    background: #766767;
    box-shadow: 3px 3px 2px 2px #a89b9b;
}

.hand.second {
    height: 4px;
    background: #e33;
    box-shadow: 3px 3px 2px 2px rgb(235, 107, 107);

}


.romperFlujo {
    clear: both;
}

.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}


#videoFondo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
    overflow: hidden;
    opacity: 70%;
}

* {
    margin: 1px;

    box-sizing: border-box;
}

html {
    border: 0px;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

header {
    padding: 8px;
    border: solid 1px black;
    box-shadow: 3px 3px 2px 3px rgba(98, 95, 95, 0.2);
    margin: 25px 0px 0px 0px;
    vertical-align: middle;
    width: 100%;
    min-height: 150px;
}


p {
    color: black;
    font-family: "SourGummy";
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 18px;
    text-indent: 5em;
    line-height: 1.4em;



}

span {
    color: black;
    font-family: "SourGummy";
    text-align: left;
    font-size: 1.4em;
    margin-bottom: 18px;
    text-indent: 5em;
    line-height: 1.4em;

}


section {
    padding: 7px;
    margin: 0px;
    width: 100%;
    border: #131313 solid 1px;
    box-shadow: 3px 3px 2px 3px rgba(98, 95, 95, 0.2);
}

h1,
h2,
h3 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;

}


article {
    inline-size: 10px;
    padding: 32px;
    margin: 10px 0px 10px 0px;
    width: 45%;
   /* border: #131313 solid 1px;*/

}



img {
    max-width: 4%;
    border-radius: 6%;
    box-shadow: 6px 6px rgb(210, 210, 199), 1px 0 0.6px rgb(110, 114, 110);
}

footer {
    text-align: right;
    width: 100%;
    margin: 0px;
    background-color: transparent;
    opacity: 60%;

}