@import url('https://fonts.googleapis.com/css?family=Montserrat');

* {
  margin: 0;
  padding: 0;
}

html, body {
  width: 100vw;
  height: 100vh;
}

body {
  background: #111111;
  background-image: url(assets/background.jpeg);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

a {
  color: #0858E9;
  text-decoration: none;
}

.content {
  width: 60vw;
  height: 60vh;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
  text-align: center;
  box-shadow: 0 .5vh 1vw rgba(0,0,0,.1);
  padding: 6vh 6vw;
  display: flex;
  flex-direction: column;
}

.content-header img {
  height: 12vh;
  min-height: 80px;
  margin-bottom: 2vh;
}

.content-middle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-middle .middle-phone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2vh;
}

.content-middle .middle-phone > h3 {
  margin: 1vh 2vw;
}

.content-footer .footer-address a {
  font-size: calc(13px + .1vw);
  padding: 1vh;
  display: block;
  text-decoration: underline;
}

@media only screen and (max-device-width: 480px) {
  .content {
    width: calc(100vw - 32px);
    height: 86vh;
    padding: 4vh 16px;
    align-self: flex-end;
    border-radius: 6px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .content-middle .middle-email {
    font-size: calc(13px + .5vw);
  }
}
