@charset "UTF-8";

@font-face {
  font-family:'unisans';
  src: url('unisans.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
}

a {
  text-decoration: none;
}

body {
  font-family: 'unisans', sans-serif,'Segoe UI', Tahoma, Verdana;
  font-size: 1em;
  line-height: 1.5;
  background-color: rgb(26, 36, 36);
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

button {
  background: transparent;
  border-style: none;
  color: white;
  font-size: 1em;
  text-align: center;
  padding-top: .5em;
  padding-bottom: .5em;
  margin: .1em;
  height: auto;
  width: 10em;
}

h1 {
  letter-spacing: .25em;
  font-size: 2em;
  font-weight: 100;
  padding: .5em 0 0 .6em;
}

h2 {
  word-spacing: 2em;
  letter-spacing: .5em;
  font-weight: 400;
  font-size: .75em;
  padding: 0 0 2em .5em;
}

h3 {
  background-color:  rgb(88, 88, 88);
  letter-spacing: .5em;
  font-weight: 400;
  font-size: 1em;
  padding: .5em 0 .5em .75em;
}

header {
   background-color: rgb(0, 205, 194);
}

#logo {
  background-position: bottom;
  height: 8em;
  background-repeat: no-repeat;
  background-image: url(logo.png);
  background-size: 4em;
}

.main {
  width: 100%; 
  height: auto;
  text-align: center;
  color: white;
}

nav {
  width: 100%;
  height: 2em;
}

nav a {
  color: black;
}

nav a:hover {
/*border-bottom: 1.5px rgb(255, 255, 255) solid;*/
  color: white;
}

nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style-type: none;
  font-size: .75em;
}

nav li {
  padding: .75em 0 0 1.25em;
}

.socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1em;
}

#yt button:hover {
  color: rgb(0, 205, 194);
  animation-name: fadeIn;				
  animation-duration: 3s;       			
  animation-iteration-count: infinite;
  text-shadow: 0px 0px 5px rgb(0, 205, 194);
}

#ttv button:hover {
  color: rgb(0, 205, 194);
  animation-name: fadeIn;				
  animation-duration: 3s;       			
  animation-iteration-count: infinite;
  text-shadow: 0px 0px 5px rgb(0, 205, 194);
}

#tt button:hover {
  color: rgb(0, 205, 194);
  animation-name: fadeIn;				
  animation-duration: 3s;       			
  animation-iteration-count: infinite;
  text-shadow: 0px 0px 5px rgb(0, 205, 194);
}

#ig button:hover {
  color: rgb(0, 205, 194);
  animation-name: fadeIn;				
  animation-duration: 3s;       			
  animation-iteration-count: infinite;
  text-shadow: 0px 0px 5px rgb(0, 205, 194);
}

@keyframes fadeIn { 
  0% {opacity: 1;}
  5% {opacity: .8;}
  8% {opacity: 1;}
  10% {opacity: .8;}
  15% {opacity: 1;}
  18% {opacity: .2;}
  20% {opacity: 1;}
  23% {opacity: .8;}
  25% {opacity: .5;}
  27% {opacity: 1;}
  29% {opacity: .8;}
  32% {opacity: 1;}
  35% {opacity: 1;}
  38% {opacity: .8;}
  40% {opacity: 1;}
  45% {opacity: .6;}
  50% {opacity: 1;}
  75% {opacity: 1;}
  78% {opacity: .7;}
  80% {opacity: 1;}
  100% {opacity: 1;}
}