@font-face{
  font-family: 'Solare';
  src:url(/fonts/solare/solare/SolareItalic-Black.otf) format('opentype')
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    color: #333;
    height: 100vh;
    overflow: hidden;
    background-color: #fff0f5;
  }
  
  .container {
    display: flex;
    height: 100vh;
    width: 100vw;
  }
  
  .left-image {
    flex: 1;
    overflow: hidden;
  }
  
  .left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .right-content {
    flex: 1;
    padding: 40px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background-image: url('/pics/aboutbackground.png'); 
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 110%;
  }
  
  .top-header {
    width: 100%;
    display: flex;
    font-family: 'Solare';
    
  }
  
  h1 {
    font-size: 3rem;
    color: #834550;
    margin-bottom: 2.5rem;
   
  }
  
  .paragraph {
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
  }
  
  .tabs {
    margin-top: 30px;
    display: flex;
    gap: 30px;
  }
  
  .tabs span {
    position: relative;
    cursor: pointer;
    font-weight: bold;
    color: #834550;
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1.3rem;
    transition: color 0.3s ease;
  }
  
  .tabs span::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: -5px;
    background-color: #834550;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  
  .tabs span:hover {
    color: black;
  }
  
  .tabs span:hover::after {
    transform: scaleX(1);
  }
  
  .info {
    margin-top: 20px;
    font-family: 'Sofia Sans', sans-serif;
    font-size: 1rem;
  }
  
  ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  