@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
  font-family: tahoma, sans-serif;
  color: #F9F9F9;
  background-color: #222222;
  padding: 0;
  margin: 0;
}
.header {
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 4vw;
  display: flex;
  list-style: none;
  flex-direction: row;
  justify-content: space-between;
}
.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  padding: 25px 4vw;
  margin-top: auto;
}
.title {
  font-size: 60px;
  letter-spacing: 15px;
  text-align: left;
  list-style: none;
}
.subtitle {
  font-size: 20px;
  padding: 5px 5px;
  letter-spacing: 4.7px;
  text-align: left;
  list-style: none;
}
.socials {
  float: right;
  font-size: 50px;
  background-color: inherit;
  align-self: left;
  padding-top: 10px;
}
.socials li {
  display: inline-block;
}
.youtubegrid {
  display: grid;
  padding: 40px 1vw;
  grid-template-columns: repeat(auto-fit, minmax(360px, 28vw));
  grid-template-rows: auto;
  grid-gap: 1em;
  justify-content: space-evenly;
  background-color: #333333
}
.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  /*min-width: 480px;
	min-height: 270px;*/
}
@media (max-width: 980px) {
  .header, .title {
    font-size: 2rem;
    flex-direction: column;
  }
}
@media (max-width: 630px) {
  .socials {
    flex-direction: column;
    font-size: 2rem
  }
}
@media (max-width: 800px) {
  .subtitle {
    font-size: 1rem;
  }
}
/*@media (max-width: 969px){
	.subtitle	{display: none}
}*/