html,body {
  height:100%;
}

.body{
  padding-top: 60px;
  padding-bottom: 50px;
}

.linkWithStyle{
  color: blue;
  text-decoration: underline;
}

.topBar {
  display: flex;
  background-color: #E00303;
  color: white;
  font-family: sans-serif;
  padding: 10px;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  
  border-bottom-color: maroon;
  border-bottom-width: 7.5px;
  border-bottom-style: solid;
  
  margin-top: -10px;
  margin-left: -10px;
  margin-right: -8px;
  
  position: fixed;
  
  z-index: 2;
}

.homeButton {
  display: flex;
  font-size: 24px;
  align-items: center;
  font-weight: bold;
}

.topBarButton{
  font-size: 20px
}

.nintendo{
  margin-left: 10px;
  
  border-style: solid;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 90px;
  border-width: 5px
}

.textAndImage{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.paragraph{
  font-size: 20px;
  width: 90%;
  justify-content: center;
  margin: 8px;
}

.frontPageImage{
  float: right;
}

.description{
  font-style: italic;
}

a{
  text-decoration: none;
  color: inherit
}

table{
  width: 100%;
}

td{
  text-align: center;
}

.divider{
  background-color: black;
  display: inline-block;
  width: 10px;
  height: 500px;
}

.timeline {
  position: relative;
  margin-bottom: -50px;
}

.timeline:after {
  content: '';
  position: absolute;
  width: 10px;
  background-color: black;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  margin-top: -150px;
  z-index: -1;
}

.infoBox {
  padding-right: 0px;
  position: relative;
  background-color: inherit;
  width: 45%;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 0px;
}

.left {
  left: 0;
}

.right {
  left: 52.5%;
}

.info{
  transform: translate(0, -90px);
  margin-bottom: 20px;
}

.timelineIconLeft {
  position: absolute;
  margin-left: 55vw;
  z-index: 1
}

.timelineIconRight {
  position: absolute;
  margin-right: 49vw;
  z-index: 1
}

.imageRight{
  position: absolute;
  transform: translate(-45vw);
}

.imageLeft{
  position: absolute;
  transform: translate(45vw);
}

h2{
  font-size: 40px;
  text-decoration: underline
}

.details{
  width: 80%;
  transform: translate(4.5vw);
  font-size: 22px;
}

.gameReview{
  display: flex;
}

.title{
  font-size: 32px;
  text-decoration: underline;
  text-align: center;
  margin-bottom: -10px;
  font-weight: bold;
}

.reviewer{
  font-size: 30px;
  text-align: left;
  margin-left: 10px;
  margin-right: 10px;
}

.reviewText{
  font-size: 20px;
  text-align: justify;

  margin-left: 10px;
  margin-right: 10px;
}

.rating{
  font-size: 28px;
  font-weight: bolder;
  font-style: oblique;
  margin-left: 30px;
  text-align: left
}

.great{
  color: green;
}

.good{
  color: #ffce00
}

.meh{
  color: orange
}

.bad{
  color: darkred
}

li{
  text-align: left
}

.frontPageImages{
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.test{
  align-self: center;
}