* {
  margin: 0;
}

*::selection {
  background-color: magenta;
}

h1  {
  font-family: hero-new-hairline, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 80px;
}

h2  {
  font-family: hero-new-hairline, sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 48px;
  line-height: 1.5;
}

h3 {
  font-family: hero-new-hairline, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 100px;
}

p {
  font-family: sans-serif;
  font-weight: 100;
  font-size: 18px;
}

a {
  text-decoration: none;
  text-align: center;
  color:black;
}

a:hover {
  color: gray;
  cursor: alias;
}

.spacer {
  margin-top:-190px;
}

.home-container {
  height:100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header {
  position: sticky;
  top:0;
  left:0;
  width:40vw;
  text-align: center;
  margin-left: 20px;
}

.proj-container {
  display: flex;
  width:50vw;
  margin-left: 45vw;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-right: 20px;
}

.text {
  margin-left:10%;
  margin-right:10%;
  line-height: 1.4;
}

.slideshow-container {
    max-width: 80vw;
    position: relative;
    margin: auto;
}

.prev, .next {
    cursor: pointer !important;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: black;
    opacity:0.8;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a grey background color */
  .prev:hover, .next:hover {
    background-color: #f1f1f1;
    color: black;
  }