html, body {
  background: white;
  z-index: 1;
  font-size: 35px;
  font-family: Helvetica,Arial,sans-serif;
  padding: 0;
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: rgb(255,255,255);
background: -moz-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(235,235,235,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ebebeb",GradientType=1);
}
::-webkit-scrollbar {
    display: none;
}
a, button, input, label {
  cursor: pointer;
  color: black;
}
img {
  width: 100%;
}

a {
  text-decoration: none;
}
a:hover {
  color: #802ea3;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0
}
a, p, h1, h2, h3, h4, ul, li {
  list-style: circle;
  margin: 0;
  padding: 0;
  color: black;
  font-size: inherit;
}


header {
  position: fixed;
  width: 100%;
  display: grid;
  top: 0;
  left: 0;
  padding: 1px 5px;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  z-index: 2000;
  transition: 1s;
  height: auto;
}

.desktop{
  display: block;
}
@media screen and (max-width:500px){
  .desktop{
    display: none;
  }
  header {
    width: 100%;
    display: flex;
    grid-gap: 20px;
  }
}

main {
  padding: 5px;
  padding-top: 44px;
}
@media screen and (max-width:500px){
  main {
    padding: 5px;
    padding-top: 76px;
  }
}
.left-t {
  text-align: left;
}
.center-t {
  text-align: center;
}
.right-t {
  text-align: right;
}
.project-c h1{
  margin-bottom: 10px
}
.project-images-c {
  display: grid;
    grid-gap: 2px;
  grid-template-columns: 1fr 1fr;
}
.project-images {
  margin-bottom: 2px;
}
.project-c img {
  border: 2px solid black;
}

.grid-1 {
  display: grid;
    grid-gap: 2px;
  grid-template-columns: repeat(1, 1fr);
}
.grid-2 {
  display: grid;
    grid-gap: 2px;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
    grid-gap: 2px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-5 {
  display: grid;
    grid-gap: 2px;
  grid-template-columns: repeat(4, 1fr);
}

.project-c {
  padding-bottom: 110px;
}
.project-text-blur {
  position: fixed;
  bottom: 0;
  z-index: 100;
  left: 0;
  width: 100vw;
  height: 70px;
  background: lightgrey;
  filter: blur(0.7vw);
  margin-bottom: -30px;
}
.project-text {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  transition: 0.5s;
  height: 110px;
  overflow-y: scroll;
  margin-top: 10px;
  background: lightgrey;
  filter: blur(0vw);
  padding-bottom: 30px;
}
.open {
  height: 75vh;
}
.project-text p{
  padding: 5px;
  line-height: 1;
  max-width: 1000px;
}
.project-text br{
  height: 10px;
}

@media screen and (max-width:500px){
  .project-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}





/* PROJECTS INDEX SITE */
.projects-c {
  display: flex;
  align-items: flex-start;
}
.projects-c img{
  width: 27px;
  margin: 0 4px;
  display: inline-block;
  border: 1px solid black;
}





/* .xyz/ */

footer {
  width: 100vw;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 9999;
  padding: 5px 7px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: normal;
  font-style: italic;
  color: black;
  -webkit-text-stroke: 2px rgb(255, 255, 255);
  padding-right: 10px;
  font-size: 100px;
  mix-blend-mode: difference;
  line-height: 0.85;
}
footer a{
  display: block;
}
.mail:hover {
  color: rgb(194, 194, 194);
}

.img-c {
  font-size: 3vw;
}
.start-header {
  display: flex;
  width: 99.5vw;
  position: fixed;
  mix-blend-mode: difference;
  justify-content: space-between;
  top: 0;
  padding: 0 5px;
  left: 0;
}
.start-header h1{
  font-weight: normal;
  padding: 0 2px;
  color: white;
  letter-spacing: 2px;
  font-size:40px;
  -webkit-text-stroke: 1px white;
}
@media screen and (max-width:600px){
  .img-c {
    font-size: 3vw;
    margin-top: -30px;
    overflow-x: hidden;
  }
  .start-header h1{
    letter-spacing: 2px;
    padding: 5px 3px;
    font-size:27px;
  }
  footer {
   font-size: 55px;
   padding: 7px;
   bottom: 0;
   top: auto;
   left: 0;
   right: auto;
   -webkit-text-stroke: 1px rgb(255, 255, 255);
  }
}
