body {
  margin: 0;
  background: linear-gradient(to bottom, rgb(35, 35, 38), rgb(35, 35, 38) 10%, var(--primary_color) 30%, var(--thirdly_color) 50%, var(--thirdly_color));
  color: white;
}

#about-page {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 10px 20px;
}

#about-header {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 30px;
}

#about-header p {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

#about-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 70px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
}

#about-left img {
  display: flex;
  width: 50vw;
  max-width: 300px;
  height: auto;
  border-radius: 500px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin: 0 auto;
}

#about-left{
  transition: all 0.3s ease;
  padding-top: 0;
}


#about-right {
  width: 80%;
  max-width: 600px;
}

.info-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    margin-top: 0;
    width: 100%;
}
  
.info-card {
    flex: 1 1 300px;
    height: fit-content;
    padding: 25px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.3s ease-in-out;
}
  
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(85, 31, 135, 0.37);
  transition: 0.2s;
}
  
.info-card h2 {
    margin-bottom: 15px;
}

#bodyfooter {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  width: 80vw;
  margin: 20px auto;
}