













/* general styling */
:root {
    --smaller: .75;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
    margin: 0;
  }
  
  body {
    align-items: center;
    /* background-color: #ffd54f; */
    background-color: aliceblue;
    display: flex;
    font-family: -apple-system, 
      BlinkMacSystemFont, 
      "Segoe UI", 
      Roboto, 
      Oxygen-Sans, 
      Ubuntu, 
      Cantarell, 
      "Helvetica Neue", 
      sans-serif;

    background-image: url('images/bg-main.JPG'); /* Replace with your image file name */
    background-size: cover; /* Makes the background cover the entire viewport */
    background-position: center; /* Shift image left by 50px */
    background-repeat: no-repeat; /* Prevents the image from repeating */

    flex-direction: column; /* Stack children vertically */
    justify-content: flex-start; /* Align children to the top */
    align-items: center; /* Center items horizontally */
  }
  
  /* .container {
    color: #333;
    margin: 0 auto;
    text-align: center;
    background-color: aliceblue;
  } */

  .container {
    color: #333;
    text-align: center;
    margin-top:  10%; /* Add space from the top */
    padding: 20px; /* Optional padding for better appearance */
    margin-bottom: 20px; /* Optional margin from the bottom */
    font-size: calc(1em * 0.7); /* Reduce font size by 30% */
  }

  h1 {
    font-weight: normal;
    letter-spacing: .125rem;
    text-transform: uppercase;
    color: black; /* Text color */
    text-shadow: 
        -1px -1px 0px white,
         1px -1px 0px white,
        -1px  1px 0px white,
         1px  1px 0px white; /* Creates a black outline */
    }
  
  li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-transform: uppercase;
    color: black; /* Text color */
    text-shadow: 
        -1px -1px 0px white,
         1px -1px 0px white,
        -1px  1px 0px white,
         1px  1px 0px white; /* Creates a black outline */

  }
  
  li span {
    display: block;
    font-size: 4.5rem;
  }
  
  .emoji {
    display: none;
    padding: 1rem;
  }
  
  .emoji span {
    font-size: 4rem;
    padding: 0 .5rem;
    color: black; /* Text color */
    text-shadow: 
        -1px -1px 0px white,
         1px -1px 0px white,
        -1px  1px 0px white,
         1px  1px 0px white; /* Creates a black outline */

  }
  
  @media all and (max-width: 768px) {
    h1 {
      font-size: calc(1.5rem * var(--smaller));
    }
    
    li {
      font-size: calc(1.125rem * var(--smaller));
    }
    
    li span {
      font-size: calc(3.375rem * var(--smaller));
    }
  }