*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  color: #4d4d4d;
}
body{
  background-color: #cccccc;
}
.wrapper{
  width: 90%;
  padding-bottom: 30px;
  background-color: #e6e6e6;
  margin: 0 auto;
  box-shadow: 5px 5px 10px #333333;
}
.heading{
  font-size: 5.5em; 
  font-weight: bold;
  text-align: center;
}
p{
  margin: 0 auto;
  width: 58%;
  font-size: 2em;
  padding: 20px;
  text-align: center;
}
.copyright{
  text-align: center;
  font-size: 1em;
}
.break{
  height: 50px;
}
.small_break{
  height: 25px;
}
.med_break{
  height: 100px;
}
.big_break{
  height: 150px;
}
.centre_images{
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 20px auto;
  transition-duration: 0.2s;
}
.centre_images:hover{
  transform: scale(1.1);
}
.centre_images_portrait{
  display: block;
  width: 100%;
  max-width: 679px;
  margin: 20px auto;
  transition-duration: 0.2s;
}
.centre_images_portrait:hover{
  transform: scale(1.1);
}


@media (max-width: 1200px){
  .heading{
    font-size: 4em;
  }
  p{
    font-size: 1.8em;
    width: 80%;
  }
  .centre_images{
    width: 90%;
    background-size: cover;
  }
  .centre_images_portrait{
    width: 90%;
    background-size: cover;
  }
}

@media (max-width: 800px){
  .heading{
    font-size: 3em;
  }
  p{
    font-size: 1.6em;
    width: 70%;
  }
  .copyright{
    font-size: 0.8em;
  }
}

@media (max-width: 600px){
  .wrapper{
    padding-top: 80px;
  }
  .heading{
    font-size: 2.45em;
  }
  p{
    font-size: 1.4em;
    width: 90%;
  }
}

@media (max-width: 400px){
  .wrapper{
  width: 100%;
  background-color: #e6e6e6;
  box-shadow: none;
  }
  .heading{
    font-size: 1.8em;
  }
  p{
    font-size: 1.125rem;
  }
  .copyright{
    font-size: 0.625em;
  } 
}
