/* File: splash.css */

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #FFF6ED; /* Background color */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
  }
  
  #splash-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 100%;
  }
  
  #splash-screen img {
    width: 240px; /* Adjust size as needed */
    margin-bottom: 60px;
    animation: bounce 2s infinite;
  }
  
  #splash-screen h1 {
    color: #E57667; /* Primary color */
    font-size: 30px;
    margin: 0;
    font-family: 'Playfair Display', serif;
  }
  
  #splash-screen p {
    color: #E57667; /* Primary color */
    font-size: 22px;
    margin-top: 10px;
  }
  
  /* Simple animation for logo */
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-20px);
    }
    60% {
      transform: translateY(-10px);
    }
  }
  