/* styles.css */
@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;
    
}

  .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;
    }
  }
  
  