
:root {
   --textColor: #ebdbb2;
   --backgroundColor: #282828;
   --highlightColor: #7c6f64;
}
/* SpaceMono Nerd Font */
@font-face {
    font-family: SpaceMono;
    src: url(Fonts/SpaceMonoNerdFontMono-Regular.ttf);
}

html:hover {
  cursor: none;
}

body {
  
    /* Basic CSS Stuff */
    background-color: var(--backgroundColor);
    color: var(--textColor);
    font-family: SpaceMono;
    height: 100vh;
    width: 100vw;
    overflow:hidden;
    margin: 0;
}

#clickToEnter {
    /* Make C2E Take Up 100% Of Your Screen */
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    width:100%;
    height: 100%;
    background-color:#282828;

    /* Center Text */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Remove Annoying Bar When User Hovers Over The Text */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#imageContainer {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#imageContainer img {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  max-width:65vw;
  width: auto;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));

  /* Remove Blue Shit When User Drags Or Double Clicks Their Screen */
  user-select: none;
}
p {
    margin: 0;
}

#buttonContainer p {
  margin-left: 10px;
  user-select: none;
  transition: all .25s;
  border-radius: 1.5px;
}


#buttonContainer p:Hover {
  padding-left: 2.5px;
  background-color: var(--highlightColor);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));

}

#buttonContainer p:active {
  padding-left: 5px;
}

@media (max-width: 640px) {
  #imageContainer img {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    height: 65vh;
    width: 100vw;
    max-width: none;
    
    object-fit: cover;
    
    top: auto;

    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  }
}





