/*
Theme Name: VGHF
Author: Amanda Glosson Cifaldi
Description: VGHF Custom Theme
Version: 1.0
*/

.grow:hover {
  z-index: 999;
}

a:hover svg .videoGame {
  animation: logoPulse 1.5s;
  -moz-animation: logoPulse 1.5s infinite ease-in-out;
  -webkit-animation: logoPulse 1.5s infinite ease-in-out;
}

@-webkit-keyframes logoPulse {
  0% { fill: #0090FF; }
  50% { fill: #5e2ca5; }
  100% { fill: #0090FF; }
}

@keyframes rotate {
  0% { fill: #0090FF; }
  50% { fill: #5e2ca5; }
  100% { fill: #0090FF; }
}

video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
}

.bg-paper {
  background-image: url("assets/images/paper.png");
  background-repeat: repeat;
}

.bg-fixed {
  background-attachment: fixed;
}

.oswald {
  font-family: 'Oswald', sans-serif;
}

.roboto {
  font-family: 'Roboto', sans-serif;
}

.primary-color {
  color: #0090FF;
}

.primary-color-bg {
  background-color: #0090FF;
}

.primary-color-bg--70 {
  background-color: rgba(0, 144, 255, 0.7);
}

.primary-color-bg--80 {
  background-color: rgba(0, 144, 255, 0.8);
}

.right-05 {
  right: .5rem;
}

nav a {
  position: relative;
  text-decoration: none;
}

nav a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0090FF;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

nav a:hover:before,
nav a.nav-active:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* template specific css */
.featured-bg {
  background: repeating-radial-gradient(
    circle,
    #5e2ca5,
    #5e2ca5 1px,
    white 2px,
    white 20px
  );
}

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}

input[type="radio"]:checked+label {
  background: #5e2ca5;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

article {
	width: 100%;
}
