body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu;
  width: 100%;
  overflow-x: hidden;
}



.header {
  background-color: #ffffff;
  color: #000000;
  padding: 20px;
  position: relative;
  width: 90%;
  align-self: center;
  justify-self: center;
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin: 1vw;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  width: 200px;
}

.menu-button {
  width: 20vw;
  height: 60px;
  align-content: center;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
  cursor: pointer;
  text-align: center;
}

.menu-button:hover {
  background-color: #b5b5b5;
}

.contact-button:hover {
  background-color: #b5b5b5;
}

.contact-button {
  width: 20vw;
  height: 60px;
  align-content: center;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
  cursor: pointer;
  text-align: center;

}


.header-container {
  width: 90%;
  text-align: center;
  flex-direction: column;
  margin: 1vw;
  margin-top: 50px;
  display: flex;
  justify-self: center;
}

.header-text {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: left;
}

.header-text-title{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: left;
}
.header-container a {

  margin-bottom: 5px;
  text-align: left;
}

.highlighted-projects {
  font-size: 24px;
  border-radius: 5px;
  text-align: center;
  margin: 0;
  margin-top: 10rem;
}

.cardContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;

  margin-left: 10px;
  margin-right: 10px;
  margin-top: 1rem;
  margin-bottom: 250px;

}

.card {
  width: 300px;
  height: 400px;
  background-color: #e0e0e0;
  border-radius: 10px;

  transition: transform 0.5s;
  overflow: hidden;
  cursor: pointer;
  flex-direction: column;
  margin: 50px;
  padding: 5px;
}


/**comment btw*/

.card img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: scale-down;
  /**border: 1px solid #999;*/
  /
}

.blurred {
  filter: blur(10px);
}

.card:hover {
  transform: scale(1.1)
}

.card.expanded {
  visibility: visible;
  position: fixed;
  margin: 0;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;

  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  background-color: #ffffff7a;
  border: none;

  /* explain to me why i need to re-flex box it so i can center shit*/
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}


.card.expanded:hover {
  transform: scale(1.0)
}

.card.expanded img {
  width: 100vw;
  height: 40vh;
  border: none;
  object-fit: scale-down;
}

.description {
  visibility:inherit;
  width: 75vw;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 5rem;
}


.info-card {
  visibility: hidden;
  height: 0px;
  width: 0px;
  transition: transform 0.5s;
}

.info-card:hover {
  transform: scale(1.1);
}

.info-card.expanded {
  visibility: visible;
  position: fixed;

  left: 0px;
  top: 0px;

  width: 100vw;
  height: 100vh;

  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  background-color: #ffffff7a;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.info-card.expanded img {
  width: 50%;
  height: 50%;

  object-fit: unset;
  border-radius: 15px;
}

.info-card .info-card-contents {
  text-align: center;
  width: 75%;
  height: 75%;
  padding: 10px;
  border-radius: 15px;
  background-color: #ffffff;
}

.sideMenu {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffffff7a;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 70px;
}


.sideMenu a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  display: block;
  transition: 0.3s;
  background-color: #ffffff00;
  color: #000000;
}


.sideMenu .closebtn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  background-color: #ffffff00;
  color: #000000;
  border: none;
  padding: 20px 20px;
  border-radius: 5px;
}

.sideMenu .closebtn:hover {
  background-color: #b5b5b5;
}

.sideMenuOption {
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
  cursor: pointer;
}

.sideMenuOptionGap {
  border: none;
  height: 20px;
  padding: 10px 20px;
  cursor: default;
}

.sideMenuOption:hover {
  background-color: #b5b5b5;
}

.contactContainer {
  display: grid;
  grid-template-columns: auto;
}


.form-container {
  display: grid;
  grid-template-columns: auto auto;
  overflow: visible;
  gap: 10px;


}

@media (max-width: 860px) {
  .contactContainer .form-item {
    grid-column: 1 / span 2;
    width: 85vw;
  }

  .contactContainer textarea {
    width: 85vw;
  }

  .contactContainer .button-area {
    width: 85vw;
  }

    .header-text a {
    font-size: 20px;
  }

    .header-text-title a {
    font-size: 26px;
  }

  .header-text p {
    font-size: 14px;
  }

}

@media (min-width: 861px) {
  .contactContainer .form-item {
    grid-column: unset;

  }

  .header-text-title a {
    font-size: 40px;
  }
  .header-text a {
    font-size: 30px;
  }

  .header-text p {
    font-size: 20px;
  }
}

.contactContainer h1 {
  text-align: left;
  align-self: baseline;
  font-size: 25px;
  color: rgb(0, 0, 0);
  letter-spacing: 0.4px;
  margin-bottom: 0px;
}

.contactContainer p {
  align-self: baseline;
  text-align: left;

  color: rgb(136, 136, 136);

  margin-bottom: 25px;
  width: 94vw;
}


.contactContainer .input-text {
  font-size: 14px;
  height: 2rem;

  border: 1px solid #999;
  border-radius: 10px;
  outline: none;
}

.contactContainer textarea {
  background-color: #ffffff00;
  min-height: 3rem;
  max-height: 20rem;
  resize: vertical;
  border: 1px solid #999;
  border-radius: 10px;
}

.contactContainer .button-area {
  background-color: #ffffff00;
  height: 3rem;
  border: 1px solid #999;
  border-radius: 10px;
}

.contactContainer button:hover {
  background-color: #b5b5b5;
}