/* roboto-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: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-italic - 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: 'Roboto';
  font-style: italic;
  font-weight: 400;
  src: url('/fonts/roboto-v30-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500 - 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: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/roboto-v30-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-500italic - 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: 'Roboto';
  font-style: italic;
  font-weight: 500;
  src: url('/fonts/roboto-v30-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700 - 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: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/roboto-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-700italic - 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: 'Roboto';
  font-style: italic;
  font-weight: 700;
  src: url('/fonts/roboto-v30-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-900 - 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: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/roboto-v30-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-900italic - 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: 'Roboto';
  font-style: italic;
  font-weight: 900;
  src: url('/fonts/roboto-v30-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
  height: 100%;
  margin: 0;
  background-color: white;
  font-family: Roboto;
}

h1 {
  margin: 0;
  color: white;
  font-size: 72px;
  text-align: center;
}

header {
  height: 100px;
  /* background-image: linear-gradient(#464646, black); */
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  display: flex;
  height: 100%;
  max-height: 100px;
  gap: 50px;
  transition: left 0.4s ease-in-out;

  @media (max-width: 768px) {
    max-height: unset;
    max-width: 100px;
    width: 100%;
    flex-direction: column;
    left: -400px;
    padding: 50px;
    position: fixed;
    top: 100px;
    background-color:rgba(0, 0, 0, 0.7);
  }
}

nav.active {
  left: 0;
}

nav a {
  color: white;
  font-size: 28px;
  display: flex;
  align-items: center;
  letter-spacing: 4px;
  text-decoration: none;
  font-weight: bold;

  @media (max-width: 1023px) {
    font-size: 24px;
    letter-spacing: 0.8px;
  }
}

img {
  height: 100%;
  max-height: 50px;
  margin-top: 25px;
  margin-bottom: 25px;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

main {
  margin-top: -20px;
}

.logo-holder {
  height: 100%;
  max-height: 100px;
}

.web-site-width {
  /* margin-left: auto;
  margin-right: auto; */
  margin: 100px auto;
  max-width: 1248px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

#youtube:hover {
	color: #cd1f1f;
}

#tiktok:hover {
  color: #ee1d52;
}

#reddit:hover {
 color: #ff4500; 
}

#steam:hover {
  color: #2a475e; 
}