@import url("crt.css");

@font-face {
  /* https://int10h.org/oldschool-pc-fonts/fontlist/font?ibm_vga_8x16 */
  font-family: "font"; 
  src: url("fonts/font.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #ffffff;
}

#main-landing {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  

  background-color: rgb(16, 13, 1);
  font-family: "font", monospace;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  
}


h1 {
  /* font-size: 3vw; */
  font-size: 3.5em;
  margin: 0;
}



.type-in {
  display: flex;
  flex-direction: row-reverse;
  padding: 0;
  justify-content: flex-start;
  margin-right: -1em;
}

.cursor {
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



#external_links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 16px;
  margin-top: 16px;
  padding-top: 38px;
  padding-bottom: -16px;
  width: 100vw;
  position: relative;
  background-color: rgba(31, 31, 31, 0.062);
}

#external_links::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 50px 30px rgba(63, 63, 63, 0.185);
  pointer-events: none;
}



#external_links .external_link {
  font-size: larger;
  width: 100%;
  
  align-items: center;
  align-content: center;
  padding: 4px;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  width: 70px;
  transform: scale(1);
  transition: transform 0.2s;
}

#external_links .external_link .link_text {
  transform: scale(0);
  transition: transform 0.2s;
  margin: 12px;
}

/* display when the outer element is hovered */
#external_links .external_link:hover .link_text {
  transform: scale(1);
  transition: transform 0.2s;
}

#external_links .external_link:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}


.blur {
  -webkit-backdrop-filter: blur(5.5px);
  backdrop-filter: blur(5.5px);
}

/* remove all scroll bars */
::-webkit-scrollbar {
  display: none;
}

.icon {
  /* set standard svg size */
  width: 50px;
  height: 50px;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}


@media screen and (min-width: 1200px) {
  h1 {
    font-size: 5em;
  }
}

@media screen and (max-width: 700px) {
  #external_links {
    position: fixed;
    right: 20%;
    align-items: center;
    display: flex;
    flex-direction: column;
    grid-gap: 4px 16px;
    justify-items: center;
    padding: 32px;
    width: auto;
    height: 100vh;
    margin-top: -20px;
  }
  #external_links::after {
    box-shadow: 0 0 50px 30px rgba(19, 19, 19, 0);
  }

  h1 {
    font-size: x-large;
  }

  .blur {
    border-radius: 32px;
  }

  #main-landing {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  h1 {
    
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
  }

  .caden_name {
    /* rotate text 90 */
    writing-mode: vertical-lr; 
    transform: rotate(180deg);
    
    /* transform: rotate(-90deg); */
    position: fixed;
    right: 70%;
    z-index: 1000;
    font-size: 2.5em;
    
    white-space: nowrap;
    display: inline-block;
    overflow: visible;

    margin-top: -10%;

    
    font-family: "font", monospace;
  }

  #external_links .external_link .link_text {
    transform: scale(0.65);
    transition: transform 0.2s;
    margin: 12px;
  }
}