/* do a global reset for margins and padding */
/* set the box model to border-box */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: niveau-grotesk, arial, sans-serif;
}
header {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 20px;
  margin-bottom: 10px;
  border-top: 4px solid #e20613;
  border-bottom: 4px solid #e20613;
}
h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: bold;
  color: #e20613;
  margin-bottom: 10px;
}
p {
  margin-bottom: 10px;
}
.container {
  width: 1200px;
  /* use margin to automatically centre the page*/
  margin: 0 auto;
}
.banner-img {
  width: 100%;
}
.assassins-pic {
  justify-self: center;
}
/* CSS Grid with Flexbox elements */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: stretch;
  column-gap: 30px;
  row-gap: 60px;
  margin-top: 40px;
}
.news-info {
  align-self: flex-end;
  grid-column: 2 / span 2;
  grid-row: 1;
}
.video-frame {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.twitter-box {
  grid-column: 3;
  grid-row: 2 / span 3;
}

@media only screen and (max-width: 1200px) and (min-width: 900px) {
  .container {
    width: 96%;
    /* use margin to automatically centre the page*/
    margin: 0 auto;
  }
  /* CSS Grid with Flexbox elements */
  .main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    column-gap: 30px;
    row-gap: 60px;
    margin-top: 40px;
  }
  .news-info {
    align-self: flex-end;
    grid-column: 2;
    grid-row: 1;
  }
  .twitter-box {
    grid-column: 2;
    grid-row: 4;
  }
}@media only screen and (max-width: 900px) {
  .container {
    width: 96%;
    /* use margin to automatically centre the page*/
    margin: 0 auto;
  }
  /* CSS Grid with Flexbox elements */
  .main-layout {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    column-gap: 30px;
    row-gap: 60px;
    margin-top: 40px;
  }
  .assassins-pic {
    width: 50%;
    justify-self: center;
    grid-row: 1;
  }
  .news-info {
    align-self: flex-end;
    grid-row: 2;
    grid-column: 1;
  }
  .twitter-box {
    grid-row: 3;
    grid-column: 1;
  }
}





.portrait-img {
  width: 100%;
  height: auto;
}

.video {
  height: 360px;
}
.vid-title {
  padding-bottom: 8px;
  border-bottom: 4px solid #e20613;
}
.twitter-title {
  padding-bottom: 8px;
  border-bottom: 4px solid #e20613;
}
.vid-text {
  /*    border-top: 4px solid #E20613;*/
}
.page-footer {
  margin-top: 50px;
}

/* Styling links */
a:link {
  color: #e20613;
  font-weight: bold;
  text-decoration: none;
}
a:visited {
  color: #e20613;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #e20613;
  font-weight: bold;
  text-decoration: underline #e20613;
  text-decoration-thickness: 2px;
}
a:active {
}
