* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  background-color: #f5f5f5;
  background-image: linear-gradient(#f5f5f5, #ededed);
}

.wrapper {
  height: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
  padding: 30px;

  width: 100%;
  max-width: 1200px;
}

.buttons {
  display: grid;
  gap: 30px;
}
.buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 168px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0px 7px 30px -10px #0000004d;
  transition: all 0.2s ease-out;
}
.buttons .button:hover {
  transform: translateY(-6px);
  box-shadow: 0px 7px 30px -6px #0000004d;
  z-index: 1;
}
.buttons .button.mutual {
  background: linear-gradient(#fafff5, #eeffdc);
}
.buttons .button.cir {
  background: linear-gradient(#f8f8f8, #e6e6e6);
}
.buttons .button.connect {
  background: linear-gradient(#444, #000);
}
.buttons .button .logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 500px) and (orientation: portrait) {
  .buttons {
    max-width: 400px;
    grid-template-columns: 300px;
  }
}

@media (orientation: landscape) {
  .buttons {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
