body {
	margin: 0px;
	background: white;
  font-family: 'Didact Gothic', sans-serif;
}
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
h1, h2, p {
	margin: 0;
}

.row > * {
	display: inline-block;
	vertical-align: middle;
	white-space: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
  transition: opacity 0.5s;
}

a:hover {
  opacity: 0.5;
}

#MainHeader {
  position: absolute;
  left: calc(50% - 30vw);
  top: calc(40% - 15vw);
  width: 60vw;
  height: 30vw;
  background-image: url("./header.png");
  background-size: 100%;
  
  text-align: center;
}

#MainHeader ul {
  position: absolute;
  
  text-transform: uppercase;
  font-size: 1.3vw;
  letter-spacing: 0.35vw;
}

.address {
  top: 63.5%;
  left: 40%;
}

.contact {
  top: 80%;
  left: 36.5%;
}

#MainHeader h1 {
  display: none;
}

/* Mobile */
@media only screen and (max-width: 1025px) {
  #MainHeader {
    left: calc(50% - 51.25vw);
    top: calc(50% - 25vw);
    width: 100vw;
    height: 50vw;
  }
  
  #MainHeader ul {
    font-size: 2.6vw;
    letter-spacing: 0.7vw;
  }
  
}