/* cormorant-regular - latin */
@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cormorant-v8-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Cormorant Regular'), local('Cormorant-Regular'),
       url('../fonts/cormorant-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/cormorant-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/cormorant-v8-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/cormorant-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/cormorant-v8-latin-regular.svg#Cormorant') format('svg'); /* Legacy iOS */
}
/* cormorant-700 - latin */
@font-face {
  font-family: 'Cormorant';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/cormorant-v8-latin-700.eot'); /* IE9 Compat Modes */
  src: local('Cormorant Bold'), local('Cormorant-Bold'),
       url('../fonts/cormorant-v8-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/cormorant-v8-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/cormorant-v8-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/cormorant-v8-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/cormorant-v8-latin-700.svg#Cormorant') format('svg'); /* Legacy iOS */
}

* {
  box-sizing: border-box;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    /* mobile viewport bug fix */
}

html {
    height: -webkit-fill-available;
}

html,body {
    width: 100vw;
    height: 100vh;
    margin: 0;
}

html {
    background: black;
}

.site-title {
    width: 100vw;
    height: 100%;
    /* position: fixed; */
    /* left: 50%; */
    /* bottom: 1%; +/
    /* transform: translate(-50%, -50%); */
    /* z-index: 2; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-title a {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*.site-title h1 {
    font-family: 'Cormorant';
    font-style: normal;
    font-weight: 700;
    font-size: 10rem;
    line-height: 1;
    color: #ff0000;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0px 0px 15px #000;
}*/

.site-title img {
  /* filter: drop-shadow(0px 0px 17px #000); */
  width: 80%;
  max-height: 69vh;
  margin: 0 auto 2% auto;
}

.site-title a svg {
  /* filter: drop-shadow(0px 0px 17px #000); */
  width: 80vw;
  max-height: 69vh;
  margin: 0 auto 2% auto;
  fill: red;
}

.site-title a svg:hover {
  /* fill: white; */
  cursor:url('../img/cursor.png'), auto;
}

/* @media (max-width: 1024px) {
    .site-title h1 {
        font-size: 8rem;
    }
}

@media (max-width: 680px) {
    .site-title h1 {
        font-size: 5rem;
    }
} */


/* Full Side Background Video */

/* https://stackoverflow.com/a/42144320 */


.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: url('../img/ag-poster.jpg');
  background-size: cover;
  background-position: center center;
  z-index: -2;
}

.video-container > video {
  display: block;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (max-aspect-ratio: 1920/1080) {
  .video-container > video {
    height: 100%;
  }
}

@media screen and (min-aspect-ratio: 1920/1080) {
  .video-container > video {
    width: 100%;
  }
}