/* General styles for the whole page */
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
}

.styled-title {
    display: flex;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px 20px;
    color: #fff;
    background: linear-gradient(to right, rgb(148, 219, 157), rgb(134, 178, 233));
    height: 150px;
    font-size: 24px;
    margin-top: 1px;
}

.styled-title::before,
.styled-title::after {
    content: "";
    height: 1px;
    width: 80px;
    background: #fff; /* Line color */
    margin: 0 15px; /* Space between the text and lines */
    align-self: center;
}

  .parent-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Optional for vertical centering */
    background: aqua;
}

.animated-title {
    position: relative;
    font-size: 24px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    color: #333;
    margin: 50px auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.animated-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, rgb(148, 219, 157), rgb(134, 178, 233));
    transition: width 1.5s ease-in-out;
}

.animated-title.visible::after {
    width: 100%;
}
        
  @media (max-width: 600px) {

         .styled-title {
              height: 75px;
              font-size: 20px;
         }    
  }