* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #f3eeea;
    font-family: 'Baskervville', serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  

  header h2 {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    margin-top: -100px;
  }
  
 
  main h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 3rem;
  }
  
 
  #countdown p {
    font-size: 1rem;
    font-weight: normal;
    margin: 0.3rem 0;
    letter-spacing: 1px;
  }

  a {
    color: black;
    text-decoration: none;
  }