@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

*{
    font-family: "Crimson Text", serif;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    
}



body {
    position: relative;
    
    background-image: url(/src/images/Background_Img.webp);
    border: 1px solid #e1d1b2;
    color: #e1d1b2;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }

  .grid {
    display: grid;
  }

  .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gap-8 {
    gap: 2rem;
  }

  .rounded-lg {
    border-radius: 0.5rem;
  }

  .p-8 {
    padding: 2rem;
  }

  .shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: bold;
  }

  .text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: bold;
  }

  .font-medium {
    font-weight: 500;
  }

  .mt-4 {
    margin-top: 1rem;
  }

  .text-muted-foreground {
    color: #888888;
  }

  .flex {
    display: flex;
  }

  .flex-col {
    flex-direction: column;
  }

  .items-center {
    align-items: center;
  }

  .justify-center {
    justify-content: center;
  }

  .hover\:bg-green-600:hover {
    background-color: #45a049;
  }

  .bg-background {
    background-color: #f0f0f0;
  }


  .footer {
    display: flex;
    justify-content: space-evenly;
    margin: 50px;
  }
  
  .left-section {
    font-size: 18px;
  }
  
  .center-section {
    font-size: 25px;
    text-align: center;
  }
  
  .center-section ul {
    padding: 0;
    list-style: none;
  }
  
  .center-section li {
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .right-section input[type="email"] {
    margin-bottom: 10px;
  }
  
  .right-section p {
    margin-bottom: 10px;
  }
  
  .right-section ul {
    padding: 0;
    list-style: none;
  }
  
  .center-section ul li {
    position: relative; 
  }
  
  .center-section ul li:before {
    content: "◈ ";
    position: absolute;
    left: -20px;
    opacity: 0; 
    transition: opacity 0.3s ease; 
  }
  
  .center-section ul li:hover:before {
    opacity: 1; 
  }
  @media screen and (max-width: 1064px) {
    .footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .left-section, .center-section, .right-section {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
  