body {
  background-color: #ede4ed; 
  margin: 0px;
}
  
.Banner {
  /*background-color: #4e97fe or #855cd6 */ /*This will be final colour, but removed to show where the image ends. Media queries: less than 728px do something for the banner, less than mobile length do another thing*/
  background-color: #855cd6;
  grid-area: banner;
  height: 68px;
  margin: 0px;
} 

.topnav{
  background-color: #fcfcfc;
  font-family: Arial;
  grid-area: nav;
  margin: 0px;
  
}
  
.Instructions{
  background-color: #fcfcfc;
  grid-area: instruction;
  font-family: Arial;
  font-size: 20px;
  margin-right: 5px;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 0px;
  padding: 20px;
  width: 40vw;
}

.Images{
  background-color: #fcfcfc;
  grid-area: image;
  font-family: Arial;
  font-size: 20px;
  margin-right: 10px;
  margin-left: 5px;
  margin-top: 10px;
  margin-bottom: 0px;
  padding: 10px;
  text-align: center;
  width: 50vw; /**/
}

.Images img{
  margin: auto;
  display: block;
}

.Banner2{
  display:none;
}

.grid-container {
  display: grid;
  grid-template-areas:
    'banner banner'
    'nav nav'
    'instruction image'; 
  background-color: #ede4ed; 
  
}

.responsive{
  max-width: 100%;
  height: auto;
}

.responsive1{
  max-width: 90%;
  height: auto;
}

.responsivedino{
  max-width: 76%;
  height: auto;
}

.responsive2{
  max-width: 75%;
  height: auto;
}

.responsive3{
  max-width: 60%;
  height: auto;
}

.responsive4{
  max-width: 50%;
  height: auto;
}

.responsive5{
  max-width: 49%;
  height: auto;
}
.responsivecode{
  max-width: 40%;
  height: auto;
}

.responsivecodehalf{
  max-width: 25%;
  height: auto;
}

.responsivecodehalfbig{
  max-width: 30%;
  height: auto;
}

.topnav {
  overflow: hidden;
  background-color: #7B50D3;
}

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #5229A3;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

@media screen and (max-width: 550px) {
  
  .Instructions{
    background-color: #fcfcfc;
    width:fit-content;
    margin:10px;
  }

  .Images{
    display: none;
  }

  .Banner{
    display: none;
  }

  .grid-container{
    grid-template-areas: 
    'banner2 banner2'
    'nav nav'
    'instruction instruction'
  }

  .Banner2 {
    background-color: #855cd6;
    grid-area: banner2;
    margin: 0px;
    display: block;
  }
}