body {
  font-family: "Roboto", serif;
  margin: 0px;
  max-width: 100%;
  overflow-x: hidden;
  color: white
}
h1 h2 h3 h4 h5 h6 {
  font-family: "Roboto", serif;
  color: white

}

.headertop {
  background-image: url("../assets/headerback.png");
  height: 75vh;
  background-position-y: 40%;
  background-position-x: 20%;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: white;
  background-attachment: fixed;

}
.headerFilter {
  backdrop-filter: saturate(0.3) brightness(0.2);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  
  height: 100%;
}
.headerTitle {
  margin: 0;
  padding: 10%;
  font-size: 6em;
}
.headerSubTitle {
  padding: 10px;
  font-size: 2.5em;
}

.skill-logos {
  display: grid;
  width: 50%;
  grid-template-columns: repeat(5, calc(100% / 5));
  margin: 10px auto;
}
@media only screen and (max-width: 1000px) {
  .skill-logos {
    display: grid;
    width: 80%;
    grid-template-columns: repeat(5, calc(100% / 5));
    margin: 10px auto;
  }
}
.skill-logo {
  height: 100%;
  width: 100%;
  transform-origin: center;
}
.skill-logo:hover {
  animation: 0.2s spin-icon ease-in-out;
}
.skill-logo-image {
  width: 90%;
  ;
}
@keyframes spin-icon {
  0% {
    transform: rotate(0deg);
  }
  33% {
    transform: rotate(5deg);
  }
  66% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes jump-image {
  0% {
    transform: translateY(0px);
  }
  33% {
    transform: translateY(-10px);
  }
  66% {
    transform: rotate(20px);
  }
  100% {
    transform: rotate(-10px);
  }
}
.main-container {
  margin: 25px auto 0px;
  text-align: center;
}
.section {
  width: 80%;
  margin:auto
}
.project-sum-9s {
  background-image: url("../assets/sum9sbanner.png");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  background-position-y: 40px;
}
.project-weather {
  background-color: #37BCEF;
  
}
.project-section {
  display: grid;
  grid-template-columns: 40% 60%;
  grid-gap: 10px;
  margin: 10px auto;
  height: 50vh;
  overflow: hidden;
  width: 80%;
  padding: 12px 0px;
  margin:auto;
  padding: 0px 10%;
  color: white;
  min-height: 500px;
}
@media only screen and (max-width: 1000px) {
  .project-section {
    display: grid;
    grid-template-columns: 100%;
    grid-auto-flow: row;
  }
}

.main-bio {
  margin: 25px auto;
}

.projectSectionFilter {
  backdrop-filter: saturate(0.1) brightness(0.3);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.466), rgba(0, 0, 0, 0.8));
  width: 100%;
  height: 100%;
}

.projectSectionFilterBlue {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  width: 100%;
  height: 100%;
}

.project-section-title {
  font-size: 1.7em;
}

.project-section-image-container {
  width:100%;
}

.project-section-image {
  justify-self: end;
  height: 50vh;
}

.project-section-description {
  margin:auto
}

.project-section-image:hover {
  animation: 0.5s jump-image ease-in-out;
}


.grey-background {
  background: linear-gradient(to bottom, rgb(20, 20, 20 , 1), rgba(26, 26, 26, 1));
  color: white
  
}

.footer {
  background: linear-gradient(to bottom, rgb(20, 20, 20 , 1), rgba(26, 26, 26, 1));
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 20px 10%;
  position: relative;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

@media only screen and (max-width: 1000px) {
  .footer {
    
    grid-template-columns: 1fr;
  }
}

.footer-section {
  text-align: left;
}

.footer-link {
  text-decoration: none; 
  color: rgba(255, 255, 255, 0.5)
}

.social-media-icon {
  height: 1.7em;
  width: 1.7em;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 1000px) {
  .bio-description {
    width: 750px;
    line-height: 2em;
    margin: auto;
  }
  
}

.black-text {
  color: black;
}