@font-face {
  font-family: sequel sans bold;
  src: url('./fonts/Sequel-Sans-Medium-Disp.otf') format('opentype'),
       url('./fonts/Sequel-Sans-Medium-Disp.ttf') format('truetype'),
       url('./fonts/sequel-sans-medium-disp-webfont.woff') format('woff');
  font-style: normal;
}

@font-face {
  font-family: sequel sans light;
  src: url('./fonts/Sequel-Sans-Light-Disp.otf') format("opentype"),
       url('./fonts/Sequel-Sans-Light-Disp.ttf') format('truetype'),
       url('./fonts/sequel-sans-light-disp-webfont.woff') format('woff');
  font-weight:normal;
}

*{
  box-sizing: border-box;
}

:root {
  --background-color1: rgb(0, 0, 0);
  --background-color2: #121212;

  --text-color : rgb(255, 255, 255);
}

body{
    color:rgb(255, 255, 255);
    color: var(--text-color);
    background-color:  var(--background-color1);
    font-size: 12px;
    margin: 0;
    margin-bottom: 50;

}

h1, h2, h3, h4, p, ul, ol, strong{

  list-style-position: inside;
  text-align: center;
  font-family: "sequel sans light";
}

p, span{
  font-size: large;
  text-align: left;  
}

strong{
    font-size: large;
    font-family: "sequel sans bold";
}

h1 {
    padding-top: 100;
    margin: 0;
    text-align:left;
    font-family: "sequel sans bold";
    font-size: 8em;
  }

h2{
font-size: 3em;
}

.aboutMe{
  min-height: 100vh;
  display: flex;
  width: 100%;
}

.descriptions{
  position: relative;
  flex-grow: 2;
  width: 100%;
  cursor: default;
}

.meImage{
  overflow: hidden;
}

.meImage img{
  position: relative;
  margin-top: 50px;
  max-height: 750px;
  padding-right: 300px;
}

@media (max-width: 550px) {
  .meImage {
    display: none;
  }
}

#radialSpotlight{
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 35%;
  background: radial-gradient(100% 80% at 10% 35%, rgba(0, 0, 0, 0) 22%, #000000 70%)
}

.aboutMe h1, .aboutMe p{
  padding-left: 8%;
  margin: 0;
}

.aboutMe span{
  padding-left: 0;
  margin-left: -3;
}



#shadeBand{
  width: 100%;
  z-index: -1;
  padding-bottom: 30;

  background-image: linear-gradient(var(--background-color1) 90%, transparent 95%);
}

#longDescription{
  position: relative;
  max-width: 600px;
  width: 100%;
  margin-top: -1000px;
  margin-bottom: 50px;
  z-index: -2;

  transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);

}

.projectDescriptionContainer{
  position: relative;
  width: 80%;
  max-width: 1000px;
  height: 20rem;
  margin: auto;
    text-align: center;
  
}

.projectDescription{
  position: absolute;
  text-align: center;
  width: 100%;
  margin: auto;

}

.projectDescription p, .projectDescription h2{
  text-align: center;
}


.attentionText{
  white-space: nowrap;
}

.attentionTextCharacter{
  position:relative;
  top: 0;
  animation: jumpUpAndDown 1.2s 1 ease;
  animation-delay: -1s;
}

@keyframes jumpUpAndDown {
  0%{top: 0;}
  33%{top: -10;}
  66%{top: 5;}
  100%{top: 0;}
}


.projectSlideShow{
  display: flex;
  flex-direction: row;
  background-color: var(--background-color2);
  height: 80vh;
  max-height: 400px;

}

ul.projectSlideList {
  height: auto;
  padding: 0;
  border: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  
  overflow-y: hidden;
  overflow-x: auto;
  list-style-type: none;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;

  scroll-behavior: smooth;
}

ul.projectSlideList li {
  align-self: center;
  position: relative;
  flex: 0 0 auto;
  width: 100vw;;
  padding-left: 0;
  padding-right: 0;

}

ul::-webkit-scrollbar { width: 0 !important }

ul.projectSlideList li img {
  /*JUST A FALLBACK*/
  height: 350px;
  /*ACTUAL HEIGHT MUST BE SET IN project-slide-view.js*/

  width: auto;
  transition: filter 300ms;
}

@media (max-width: 650px) {
  ul.projectSlideList li img {
    height: 250px;
  }
}

ul.projectSlideList li img:hover {
  filter:brightness(50%);
}


button{
  cursor: pointer;
}

button.scrollButton{
  position: absolute;
  align-self: center;
  z-index: 1;
  padding: 0;
  background-color: transparent;
  border-color: transparent;
}

button.scrollButton img{
  width: 100;
  height: auto;
  filter: brightness(.6);
  transition: all 200ms;
}

#slideRight{
  right: 50;
}

#slideLeft{
  left: 50;
}

button.scrollButton:hover img{
  transform: scale(1.4);
  filter: brightness(.9);

}

.contactMe{
  padding-top: 50;
}

.contactInformation{
  display: flex;
  margin: auto;
  width: 200;
  height: 40;
  justify-content:flex-start;
  align-items: center;
}

.contactInformation img{
  height: 30;
  margin-right: 10;
}