body {
  background-color: #000000;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}


.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.container.p{
  padding: 10px;
}
.container .logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90px;
  text-align: center;
  padding: 25px;
}

.container .logo:hover {
  transform: rotate(360deg);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.container .logo1{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  text-align: center;
}


p {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.logo {
  max-width: 100px;
  height: auto;
}


.button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  text-decoration: none;
  background-color: #ff4081;
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #ff79b0;
}


p.typewriter {
  font-family: monospace;
  letter-spacing: 0.1em;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typing 4s linear infinite;
}

@keyframes typing {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}


