body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  height: 100vh;
  font-family: 'Helvetica', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  color: #fff;
}

.background {
  position: absolute;
  z-index: -1;
  display: block;
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  filter: blur(3px);
  -webkit-filter: blur(3px);
}

.wrapper {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 100%;
  max-height: 500px;
}

.title {
  font-size: 50px;
  line-height: 60px;
  color: #fff;
}

.adress {
  margin-bottom: 10px;
}

.box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid #fff;
  padding: 10px;
}

.link {
  display: inline-block;
}

.link:hover {
  text-decoration: none;
}


@media screen and (max-width: 640px) {
  body {
    padding: 20px;
    text-align: center;
  }

  .box {
    align-items: center;
  }
}