* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    height: 100vh;
    width: 100%;
    background: url('bg.jpg') no-repeat center center/cover;
    font-family: 'Poppins', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 20px;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .small-text {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    font-weight: 300;
  }
  
  .sub-text {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
  }
  
  .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: url('hat.png') no-repeat center center/70% white;
  }
  
  main {
    text-align: center;
  }
  
  main h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 6vw;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  
  main h2 {
    font-size: 1.5rem;
    font-weight: 300;
  }
  
  .info {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  footer {
    text-align: left;
    opacity: 0.3;
  }
  
  footer .tagline {
    font-size: 1.5rem;
    font-style: italic;
  }
  
  footer .url {
    text-align: right;
    font-size: 0.9rem;
    opacity: 0.6;
    margin-top: 1rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    main h1 {
      font-size: 12vw;
    }
    .overlay {
      padding: 1.5rem;
    }
  }  