@font-face {
    font-family: 'Jetzt Regular';
    src: url('JetztFont-Book.otf') format('opentype');
    font-weight: normal; /* Specify the desired font weight here */
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    font-family: Jetzt Regular;
    display: flex;
    flex-direction: column;
    background-color: rgb(49, 49, 49);
    min-height: 100vh;
  }

.logo {
    width: 70%;
    height: auto;
  }

  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  h1 {
    font-size: 3rem;
    color: #1d1d1b;
    margin-bottom: 2rem;
    text-align: center;
  }

  .coming{
    font-size: 2rem;
    color: #f5f5f5;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    text-align: center;
    transition: color 0.4s ease-in-out;
  }

  .coming:hover{
    color: #ff09d2;

  }