* {
  margin: 0;
  padding: 0;
}

body {
  font-size: 62.5%;
  color: #FC64C4;
  background: #221C7A;
}

/* Ensure to include any existing styles as well */
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}

.pulsing-logo {
  animation: pulse 2s infinite;
}

@keyframes matrix {
  0% {
      opacity: 0;
      transform: translateY(-10px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

.coming-soon {
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  margin-top: 3rem;
  animation: matrix 2s ease-in-out 1;
}

.instagram-account {
  font-size: 1rem;
  margin-top: 0.5rem;
}
.instagram-account a {
  color: #FC64C4;
  font-family: 'Montserrat';
  text-decoration: none;
  border-bottom: 2px solid;
}