body {
  background: linear-gradient(270deg, darkblue, skyblue);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.container {
  background: #333;
  border-radius: 12px;
  padding: 3%;
  text-align: center;
}

.container h1 {
  font-size: 2em;
}

.title {
  color: blue;
}

.container img {
  border-radius: 50%;
  width: 5.5em;
  height: 5.5em;
  border: 2px solid blue;
}

@media only and (min-width: 769px) {
  .container img {
    width: 8.5em;
    height: 8.5em;
  }
  .link {
    padding: 1em;
  }
}

p {
  color: rgba(255, 255, 255, 0.6);
  margin: 3%;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.link {
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  color: #ddd;
  padding: 1vh;
  min-width: 25%;
}

.coming-soon {
  display: block;
  border-radius: 30px;
  margin: 0 auto;
  padding: 1vh;
  background: darkgrey;
  width: 45%;
  margin-top: 4%;
  font-weight: 600;
  color: #333;
}

#msg-btn {
  position: fixed;
  right: 10%;
  bottom: 10%;
  border: none;
  background: skyblue;
  padding: 2%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#msg-btn:disabled {
  background: grey;
  cursor: none;
}