html,
body {
  font-family: "Lato", sans-serif;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container > p {
  font-size: 18px;
  text-align: center;
  width: 30%;
  color: #21216c;
  margin: 5px 0 15px 0;
  overflow-wrap: break-word;
}

.container > a.button {
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  width: 15%;
  outline: none;
  color: #21216c;
  background: #7ad8e5;
  box-shadow: 0px 2px 5px 0px rgba(102, 102, 102, 0.8);
  border-radius: 20px;
  border: 10px solid #7ad8e5;
  padding: 0 0 3px 0;
  overflow-wrap: normal;
}

.container > a.button:hover {
  background: #00b8ff;
  border: 10px solid #00b8ff;
}

@media screen and (min-width: 1024px) {
  .container .logo {
    max-height: 100px;
  }
}

@media screen and (max-width: 1024px) {
  .container .logo {
    max-height: 70px;
  }

  .container > p {
    font-size: 16px;
    width: 60%;
  }

  .container .image {
    height: 250px;
  }

  .container > a.button {
    width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .container .logo {
    max-height: 80px;
  }

  .container .image {
    height: 150px;
  }


  .container > p {
    font-size: 14px;
    width: 80%;
  }

  .container > a.button {
    font-size: 12px;
    width: 30%;
  }

  .container > a.button:hover {
    background: #00b8ff;
    border: 10px solid #00b8ff;
  }
}
