@font-face {
    font-family: 'Pacifico';
    src: url(Pacifico-Regular.ttf);
}


body {
    background-image: url('./background.png');
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    color: #000;
    padding-top: 100px;
    margin: 0;
  }
  
  .card {
    max-width: 600px;
    min-height: 300px;
    margin: 0 auto;
    background-color: #000;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  
  h1 {
    font-family: 'Pacifico', Georgia, Times, serif;
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;

  }
  a {
    color: #fff;
    text-decoration: none;
  }
  a:hover {
    color: #ccc;
    text-decoration: none;
  }
  
  p {
    font-size: 14px;
    color: #ccc;
    margin-top: 10px;
  }
  
  .domain {
    font-size: 12px;
    color: #ccc;
    margin-top: 20px;
  }
  
  .logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 200px;
    height: auto;
}
  
  @media only screen and (max-width: 480px) {
    .card {
      max-width: 100%;
      margin: 20px;
      box-sizing: border-box;
    }
    
    .logo {
      top: 60px;
      right: 10px;
      width: 130px;
    }

    p {
        font-size: 10px;
    }

    h1 {
        font-size: 18px;
    }

  }