/* https://www.instagram.com/carlo_basalto/ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

  body {
    font-family: 'Oswald', sans-serif;
    background: linear-gradient(to right, rgb(118,121,126), rgb(29,33,42) , rgb(0, 0, 0));
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ccc;
    min-height: 100vh;
  }

html, body {
  background-color: #000000; 
}
  
  h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}

p {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
}

nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
}

#transition-overlay {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 9999;
  transition: top 0.8s ease-in-out;
  pointer-events: none;
}

#transition-overlay.active {
  top: 0;
}

/* PAGE SLIDER*/

body.revealing {
  overflow: hidden;
}

.page-revealer {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleY(0);
  transform-origin: center bottom;
  background-color: #242424;
  z-index: 999999;
  transition: transform 1.1s cubic-bezier(0.8, 0, 0.2, 1), opacity 0.1s ease-in;
}

.page-revealer.active {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
}
