@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;500;600;800&family=VT323&display=swap');


body {
  margin: 0;
  font-family: "Poppins";
  background-color: black;
  color: white;
}

.title {
    font-size: 4rem;
    color: transparent;
    webkit-text-stroke: 1px red;
}

ul, li {
  padding: 0;
  list-style-type: none;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  column-gap: 30px;
}
header {
  grid-column: span 3;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
nav {
  padding: 30px;
  border-right: 1px solid #ddd;
}
nav li {
  text-decoration: underline;
}
article {
  padding: 30px;
}
article h2 {
  font-size: 3.5em;
  max-width: 800px;
}
article img {
  width: 100%;
}
article p {
  margin-top: 30px;
  line-height: 2em;
  color: #777;
}
aside {
  padding: 30px;
  border-left: 1px solid #ddd;
}
footer {
  grid-column: span 3;
  text-align: center;
  border-top: 1px solid #ddd;
  padding: 30px;
}

article h2{
  font-size: 2em
}

article video {
  width: 100%;
}

 body a:link {

  color: white;
}

body a:visited {

  color: white;
}

aside a:link {

  color: white;
}

aside a:visited {

  color: white;
}

body a:hover {
  font-size: 1.1rem;
}

aside a:hover {
  font-size: 1.1rem;
}

/* responsive */
@media screen and (max-width: 1200px) {
  nav {
    grid-column: span 3;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }
  nav li {
    display: inline-block;
    margin-right: 10px;
  }
  article {
    grid-column: span 2;
  }
  aside {
    padding: 16px;
  }
  
  article video {
  width: 100%;
}
}

@media screen and (max-width: 980px) {
  nav, article, aside {
    grid-column: span 3;
  }
  aside {
    border-left: 0;
    border-top: 1px solid #ddd;
  }
  article h2 {
    font-size: 2.5em;
  }
  article video {
  width: 100%;
}
}