@import url("nav.css");
@import url("scores.css");
@import url("slides.css");

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.bold {
    font-weight: bold;
}

.container {
    /*position: absolute;
    top: 25%;*/
    width: 100%;
    display: flex;
    align-items: center;
    font-family: 'Roboto', helvetica, arial, sans-serif;
}

.video-container {
    width: 870px;
    height: 535px;
    margin: 0 auto;
    background-color: #FFFFFF;
    display: flex;
    -webkit-box-shadow: 0px 0px 3px 2px rgba(224, 224, 224, 1);
    -moz-box-shadow: 0px 0px 3px 2px rgba(224, 224, 224, 1);
    box-shadow: 0px 0px 3px 2px rgba(224, 224, 224, 1);
    position: relative;
    z-index: 1;
}

.video-mask {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .85;
    display: flex;
    align-items: center;
    z-index: 9000;

}

.video-play-button-container {
    height: 105px;
    width: 105px;
    display: flex;
    align-items: center;
    font-size: 100px;
    position: absolute;
    top: 210px;
    left: 400px;
    z-index: 9000;
    transition: font-size 1s, height 1s, width 1s, transform 1s;
}

.video-play-button-container.toggle {
    height: 35px;
    width: 35px;
    font-size: 35px;
    transform: translate(-386px, 285px);
}

.video-play-button {
    color: #FFFFFF;
    border: none;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    z-index: 9001;
}

.video-play-button:before {
    background: none;
    display: block;
}

.video-play-button:hover {
    color: grey;
}

.intro-logo-container {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    font-family: 'Roboto', helvetica, arial, sans-serif;
}

.intro-logo {
    display: block;
    width: 522px;
    height: 167px;
    background: url('../img/fistscorelogo.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    text-align: center;
    position: absolute;
    left: 15%;
    top: 33%;
    transition: height 2s, width 2s, transform 2s;
}

.intro-logo.active {
    height: 33px;
    width: 105px;
    transform: translate(554px, 321px);
}

.slides {
    width: 100%;
    height: 100%;
}

.slide {
    height: 100%;
    width: 100%;
    position: relative;
    display: grid;
}

.info {
    width: 100%;
    color: white;
}

h3 {
    color: #EFCF37;
}

h3 i {
    font-size: 50px;
}

.scores {
    display: flex;
    padding-right: 15px;
}
