html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  min-height: 100vh;
  font-family: Roboto;
}

.wrapper {
  width: 100%;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: #00a859;
}

.wrapper > .logo {
  margin-bottom: -78px;
  height: 156px;
  width: 156px;
  max-width: 100%;
  border-radius: 40px;
  -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
}

.container {
  width: 100%;
  margin-top: 78px;
}

.container .title {
  color: #5c5c5c;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.125;
  margin-bottom: 1.5rem;
}

.container .flex-group {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container .button {
  color: #5c5c5c;
  background: #f7f7f7;
  margin: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  min-width: 196px;
}

.container .button:hover,
.container .button:focus {
  background: #e3e3e3;
}

.container .button > span {
  margin-left: 8px;
}

.container .button > i {
  font-size: 20px;
}

@media (min-width: 481px) and (max-width: 767px) {
  .container .flex-group {
    flex-direction: column;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .container .flex-group {
    flex-direction: column;
  }
}
