body {
  margin:0px;
  padding: 0px;
  background-color: white;
 }

a {
  color: inherit;
  text-decoration-line: none;
  cursor: pointer;
 }

h1{
  float: left;
  display: inline-block;
  font-size: 4vw;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  color: black;
  padding-left: 1%;
  margin-left: 20px;
  padding-top: 2%;
  line-height: 1;
     transition: 300ms ease;
 
 }

h1:hover{

 }

h2{
  float: left;
  display: inline;
  align-self: center;
  font-size: 2vw;
  text-align: center;
  padding: 1.2% 1% 1% 1%;
  margin-left: 20px;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  color: black;
   transition: 500ms ease;
  font-variation-settings: "wght" 600;
  margin-bottom: 0px;
 }

h2:hover{
  text-decoration-line: underline;
  cursor: pointer;
  font-variation-settings: "wght" 1000;
 }

img{
    width:28%;
  border-radius: 10px;
  margin: 0% 1% 1% 1%;
  float: left;
  box-sizing: border-box;
  border-width: 1px;
  border-color: black;
  border-style: solid;
  transition: 300ms ease;
 }

img:hover{
  box-sizing: border-box;
  border-width: 4px;
  border-color: black;
  border-style: solid;
  margin: 0% 1% 1% 1%;
  cursor: pointer;
  transition: 400ms ease;
}

header{
  position: fixed;
  height: 7vw;
  border-bottom: 2px;
  border-bottom-color: black;
  border-bottom-style: solid;
  background-color: white;
  width: 100%;
  margin: 0px;
  padding: 0px;
  align-items: center;
  align-content: center;
  z-index: 1;
}



footer {
  height: auto;
  width: 100%;
  display: flex;
  align-content: center;
  background-color: white;
  justify-content: center;
  flex-direction: column;
  border-top: 2px;
  border-left: 0px;
  border-right:0px;
  border-bottom:0px;
  border-color: black;
  border-style: solid;
 }

.email{
  padding: 2vw 0% 1vw 0%;
  font-size: 1.5vw;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
 
  font-style: normal;
  align-self: center;
  color: black;
  font-variation-settings: "wght" 200;
  transition: 300ms ease;
 }

.email:hover{
  text-decoration-line: underline;
  cursor: pointer;
  font-variation-settings: "wght" 800;
 }

.pfooter{
  display: block;
  padding: 0vw 0% 3vw 0%;
  font-size: .8vw;
    font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  align-self: center;
  color:black;
 }

.header-spacer{
  height: 7vw;
  width: 100%;
 }

.title {
  width: 100%;
  display: flex;
  overflow: hidden;
  grid-column-gap: 1rem;
 }
 
 .title-content{
     width: auto;
      min-width: 30%;
  grid-column-gap: 1rem;
  flex: none;
  flex-shrink: 0;
  display: flex;

 }

.row1 {
    width: 94%;
    display: flex;
    padding-left: 3%;
    padding-right: 3%;
    justify-content: center;
    align-content: center;
 }


.row1text {
  width: 94%;
  height: auto;
  display: flex;
  justify-content: center;
  align-content: center;
  padding-left: 3%;
  padding-right: 3%;
  padding-bottom: 2%;
 }

.projectname{
  position: static;
  display: inline-block;
  width: 28%;
  height: auto;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 1.5vw;
  padding-left: 2%;
  color: black;
   transition: 300ms ease;
  font-variation-settings: "wght" 200;
 }

.projectname:hover{
  text-decoration-line: underline;
  cursor: pointer;
  font-variation-settings: "wght" 800;
 }



.responsive{display:none;}
.responsivetext{display:none;}

/*
.landing-from-top {
  transform: translateY(-100px);
  opacity: 0;
  animation: landing-from-top-animation 1s ease-in forwards;
}


@keyframes landing-from-top-animation {
    0% {
        transform: translateY(-100px); opacity: 0;
    
}
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
*/



/*
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

.scroll {
    animation:scroll 10s linear infinite;
}