body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  color: #627360;
  font-family: 'Amatic SC', serif;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  height: 600px;
  width: 500px;
  transform: translateY(-50px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 100%;
}

.icons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icons img {
  height: 80px;
}

.buttons,
.events {
  width: 230px;
}

.buttons {
  display: flex;
  justify-content: space-between;
  font-size: 50px;
}

.events {
  font-size: 45px;
  text-align: center;
  padding: 5px 0 8px;
  box-shadow: 1px 1px 2px 1px #627360;
}

@media screen and (max-width: 600px) {

  main {
    height: 400px;
    width: 270px;
  }

  .icons img {
    height: 50px;
  }

  .buttons,
  .events {
    width: 180px;
  }

  .buttons {
    font-size: 40px;
  }

  .events {
    font-size: 35px;
  }
}