.title {
  grid-area: title;
  background-color: rgb(255, 255, 255);
  height: 10vh;
  width: auto;
}
.yTube {
  grid-area: yTube;
  background-color: rgb(255, 255, 255);
  height: auto;
  width: auto;
}

.movies {
  grid-area: movies;
  background-color: rgb(255, 255, 255);
  height: auto;
  width: auto;
}

.numbers {
  grid-area: numbers;
  background-color: rgb(255, 255, 255);
  height: 23vh;
  width: auto;
}

.rugby {
  grid-area: rugby;
  background-color: rgb(255, 255, 255);
  height: 20vh;
  width: auto;
}

.zac {
  grid-area: zac;
  background-color: rgb(255, 255, 255);
  height: auto;
  width: auto;
}

.bobRoss {
  grid-area: bobRoss;
  background-color: rgb(255, 255, 255);
  height: auto;
  width: auto;
}

.shel {
  grid-area: shel;
  background-color: rgb(255, 255, 255);
  height: 42.4vh;
  width: auto;
}

.grid-container {
  display: grid;
  grid-template-areas:
    "title title title"
    "yTube zac bobRoss"
    "movies numbers numbers"
    "movies shel shel"
    "rugby shel shel";
  gap: 3px;
  background-color: #000000;
  padding: 3px;
}

.grid-container > div {
  color: rgb(0, 0, 0);
  text-align: center;
  align-content: center;
  font-size: 25px;
}

.grid-container > div.movies {
  color: rgb(0, 0, 0);
  text-align: left;
  align-content: center;
  font-size: 30px;
}

body {
  margin: 0;
  padding: 0px 200px;
  background-color: #64d3ff;
}

ol {
  font-size: 20.5px;
}

.mrRoss,
.music {
  width: 100%;
  height: auto;
}

.carlPoppa,
.rugbyImg {
  width: auto;
  height: 100%;
}
