
@font-face {
    font-family: 'agharticondensed_black';
    src: url("agharti-condensedblack-webfont.eot");
    src: url("agharti-condensedblack-webfont.eot?#iefix") format('embedded-opentype'),
         url("agharti-condensedblack-webfont.woff2") format('woff2'),
         url("agharti-condensedblack-webfont.woff") format('woff'),
         url("agharti-condensedblack-webfont.svg#agharticondensed_black") format('svg');
    font-weight: normal;
    font-style: normal;

}
/* saira-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira';
    font-style: normal;
    font-weight: 400;
    src: url('saira-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* saira-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Saira';
    font-style: normal;
    font-weight: 600;
    src: url('saira-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
body, html{
    width:100%;
    height:100%;
    margin: 0px;
    scroll-padding-top: 200px;
}
body {
	background: linear-gradient(-45deg, #9e6eeb, #e13ce7, #7d45e4, #d523bd);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
	height: 100vh;
    overflow: hidden;
}
body.meta{
    overflow: auto; 
    background: none;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.headline{
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}
.headline a{
    text-decoration: none;
    color: #fff;
}
body.meta .container{
    justify-content:left;
}
body.meta .container .headline{
    background: linear-gradient(-45deg, #9e6eeb, #e13ce7, #7d45e4, #d523bd);
	animation: gradient 15s ease infinite;
}
.bottom{
    text-align: center;
    bottom: 20px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.bottom a{
    font-family: sans-serif;
    font-size: 0.8em;
    text-transform: none;
    text-decoration: none;
    color: #000;
    font-family: 'Saira';
    font-weight: 600;
}
body.meta .bottom{
    position: relative;
    padding-bottom:20px;
    padding-top: 40px;
}
.left{
    left: 20px;
    position: absolute;
    width: 50px;
}
.right{
    width: 68px;
    position: absolute;
    right: 40px;
}
.left a, .right a{
    font-family: sans-serif;
    font-size: 1em;
    line-height: 1em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    font-family: 'Saira';
    font-weight: 600;
    text-align: center;
    display: inline-block;
}
h1{
    font-size: 15em;
    line-height: 0.9em;
    font-family: 'agharticondensed_black', sans-serif;
    margin: 0;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    animation: glow 2s ease-in-out infinite alternate;
    color: #fff;
}
body.meta .container h1{
    font-size: 2.5em;
    animation: none;
    margin-top: 30px;
    margin-bottom: 30px;
}
body.meta .container h1 span{
    vertical-align: 6px !important;
}
.main{
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
    font-family: 'Saira', sans-serif;
    padding-top: 30px;
    border-top: 5px solid #000;
}
.main p span{
    font-weight: 600;
}



@keyframes glow {
    from {
      text-shadow: 0 0 2vw #470070;
    }
    to {
      text-shadow: 0 0 3vw #6b3a67, 0 0 1vw #a50089;
    }
  }


@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}



.cursor {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 111;
    border: 2px solid #000;
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    border: 2px solid rgb(255, 0, 212);
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2.5);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media screen and (max-width: 800px) {

h1{
    font-size: 25vw;
    animation: none;
    text-shadow: none;
    border: 0px;
    outline: none;
    font-weight: 400;
}
.left, .right{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: 40vw;
    text-align: center;
}
.left{
    margin-top: 60px;
    padding-top: 20px;
    margin-bottom: 20px;
    border-top: 3px #000 solid;
}
img{
    display: flex;
    margin:auto;
}
}

@media screen and (max-width: 600px) {
    h1{
    text-shadow: none;
    }
}
