.body {
  background-color: #a2d4da;
}

.content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo-wrapper {
  width: 400px;
  height: 400px;
  margin-bottom: 15px;
  background-image: url('../images/cw-logo-titled-med.png');
  background-position: 50% 50%;
  background-size: 400px;
  background-repeat: no-repeat;
}

.address-block {
  display: block;
  padding-bottom: 8px;
  font-family: copperplate, sans-serif;
  color: #333;
  font-weight: 700;
  text-align: center;
  letter-spacing: 4px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .logo-wrapper {
    width: 300px;
    height: 300px;
    background-size: cover;
  }
}

@media (max-width: 479px) {
  .logo-wrapper {
    width: 200px;
    height: 200px;
  }
  .address-block {
    padding-bottom: 2px;
    font-size: 10px;
  }
}

