.about {
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 20px;
}

.about-group {
  display: flex;
  flex-direction: row;
  width: 100vw;
  align-items: center;
}

.about-bg-left {
  min-height: 100vh;
  width: 65vw;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  background-image: linear-gradient(rgb(34, 18, 58), rgba(25, 13, 43, 0.815)),
    url(/photos/house-5.jpeg);

  overflow: hidden;
}
.square-grid {
  display: flex;
  flex-direction: row;
  flex: 4;
  justify-content: start;
  align-items: center;
  font-size: 40px;
  overflow: hidden;
 
}

.square {
  height: 50px;
  width: 50px;
  background-color: rgb(209, 196, 196);
 
}
.empty {
  height: 50px;
  width: 50px;
  color: orange;
  text-align: center;
}

.about-picture {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(209, 196, 196);
  height: 100vh;
  width: 35vw;
  padding-left: 20px;
}

#about-picture-row {
  display: flex;
}
#about-picture-column {
  display: none;
  height: fit-content;
}

.about-image {
  height: 300px;
  width: 300px;
  padding: 20px;
  background-color: rgb(255, 255, 255);
  
}

.about-content-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-title {
  font-size: xx-large;
  color: rgb(255, 140, 0);
  text-align: center;
}

.about-paragraph {
  display: grid;
  grid-template-columns: 1fr;
  height: fit-content;
  font-size: small;
  overflow: hidden;
  
}

.paragraph {
  text-align: justify;
  color: rgb(212, 212, 212);

  font-size: large;
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
}

.about-content-container {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.about-founder-button {
  height: 50px;
  width: 200px;
  background-color: rgb(198, 119, 8);
  color: white;
  border: none;
  border-radius: 5px;
}

.about-founder-button-pressed {
  background-color: rgb(50, 27, 77);
  color: rgb(232, 226, 226);
}

.about-button-container {
  height: 50px;
  width: 200px;
  border-radius: 5px;
  background-color: rgb(224, 152, 152);
}

.about-founder-button:hover {
  background-color: rgb(73, 26, 132);
  color: rgb(221, 227, 231);
}

.about-founder-button:active {
  background-color: rgb(31, 4, 65);
  color: rgb(235, 235, 235);
}

.about-founder {
  display: flex;
  flex-direction: column;
  background-color: rgb(177, 158, 240);
  display: none;
}

.about-founder-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(240, 233, 246);
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

.about-founder-card {
  color: white;
  font-size: xx-large;
}

.about-founder-title {
  background-color: rgb(31, 4, 65);
  position: absolute;
  left: 0px;
  right: 0px;
  padding-top: 80px;
  color: rgb(240, 233, 246);
  font-size: 60px;
}

.about-founder-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 200px;
  gap: 50px;
}

.about-founder-content-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: medium;
  color: rgb(67, 67, 93);
}

.about-founder-picture {
  height: 200px;
  width: 200px;
  border-radius: 100px;
  background-color: rgb(255, 253, 253);
  margin: 20px;
}

.founder-picture {
  height: 200px;
  width: 200px;
  border-radius: 100px;
}

.founder-name {
  font-size: large;
  font-weight: bolder;
  color: rgb(27, 4, 63);
  padding-bottom: 20px;
}

.founder-title {
  font-size: medium;
  font-weight: bold;
  padding-bottom: 20px;
}

.about-founder-paragraph {
  text-align: justify;
}

@media (max-width: 1000px) {
  .about-group {
    flex-direction: column;
    justify-content: ceter;
  }

  .about-bg-left {
    width: 100vw;
    align-items: center;
  }

  .about-content-container {
    align-items: center;
    padding-bottom: 50px;
  }

  .about-founder-content {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 200px;
    gap: 50px;
  }

  #about-picture-row {
    display: none;
  }
  #about-picture-column {
    display: block;
    background: none;
    padding-left: 0px;
    width: fit-content;
    padding-top: 50px;
  }




  
}

@media (max-width: 600px) {
  .about {
    flex-direction: column;
    padding-bottom: 50px;
  }

  .about-founder-content {
    padding-top: 200px;
  }
}

@media (max-width: 430px) {
  .about-image {
    height: 70vw;
    width: 70vw;
  }

  .about-founder-content {
    padding-top: 200px;
  }

  .paragraph {
    text-align: justify;
    font-size: small;
  }

  .square-grid {
    display: flex;
    flex-direction: row;
    flex: 4;
    justify-content: start;
    align-items: center;
    font-size: 40px;
    overflow: hidden;
  }

  .square {
    height: 40px;
    width: 40px;
    background-color: rgb(209, 196, 196);
  }
  .empty {
    height: 40px;
    width: 40px;
    color: orange;
    text-align: center;
    font-size: xx-large;
    border: none
    ;
  }
}

@media (max-width: 281px) {
  .about-founder-content {
    padding-top: 200px;
  }

  .about-founder-title {
    padding-top: 40px;
    color: rgb(240, 233, 246);
    font-size: 40px;
  }
}
