.welcome_page {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    width: 100%;
    height: calc(100vh - 65px);
}

.welcome_page .center {
    position: relative;
    top: calc(30vh - 65px);
}

.welcome_page .center h3 {
    color: white;
    font-size: 3vw;
}

.rainbow_header {
    --bg-size: 400%;
    --color-one: hsl(263, 67%, 29%);
    --color-two: hsl(276, 62%, 80%);
    font-size: 10vw;
    background: linear-gradient(
                90deg,
                var(--color-one),
                var(--color-two),
                var(--color-one)
              ) 0 0 / var(--bg-size) 100%;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: move-bg 8s infinite linear;
}

@media (prefers-reduced-motion: no-preference) {
    .rainbow_header {
      animation: move-bg 8s linear infinite;
    }
    @keyframes move-bg {
      to {
        background-position: var(--bg-size) 0;
      }
    }
}

.welcome_page .bottomSection {
    bottom: 50px;
    font-size: 20px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    color: white;
    font-weight: 500;
    padding: 10px 0px;
}

.about-page {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}
.heading {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.heading h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.heading h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: hsl(263, 58%, 44%);
}

.heading p {
    font-size: 18px;
    color: rgb(163, 163, 163);
    margin-bottom: 35px;
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.about-content {
    flex: 1;
}
.about-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    color: white;
}
.about-content p{
    font-size: 18px;
    line-height: 1.5;
    color:rgb(163, 163, 163);
}
.about-content .visit {
    display: inline-block;
    padding: 15px 50px;
    background-color: white;
    color: black;
    font-size: 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 25px;
    font-weight: 1000;
    transition: 0.3s ease;
}

.about-content .visit:hover {
    background-color: #cccccc;
}
.about-content .visit i {
    font-size: 20px;
}

.not-signed.home-sign-in-container {
    margin-top: 60px;
}
.sign-in.home-sign-in {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background-color: #1f1f1f;
  color: white;
  padding: 20px 30px;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.sign-in.home-sign-in:hover {
  background-color: #2b2b2b;
}

@media screen and (max-width: 1200px) {
    .about {
        padding: 20px;
        flex-direction: column;
    }
    .about-image {
        margin-right: 0px;
        margin-bottom: 20px;
    }
}