@import "reset.css";

/* reusable classes */
.hidden {
  display: block;
  visibility: hidden;
}

body {
  font-family: montserrat, sans-serif;
  color: pink;
  text-align: center;
  font-size: 1em;
  font-weight: 200;
  line-height: 1.5;
  color: #ED7C94;
  background: white;
}

header {
  padding: 1em;
} 

img.logo {
 max-width: 40%;
}
@media only screen and (max-width: 1000px) {
  img.logo {
    max-width: 50%;
  }
}
@media only screen and (max-width: 800px) {
  img.logo {
    max-width: 60%;
  }
}
@media only screen and (max-width: 600px) {
  img.logo {
    max-width: 70%;
  }
}
