@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

* {
  margin: 0;
  padding:0;
}

body {
    background-color: black;
}

#intro {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  
  font-family: 'Press Start 2P', cursive;
  font-size: 4vw;
  text-align: center;
  color:white;

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

  transition: opacity 500ms;
}

#intro p {
    margin: 3vw;
}

#intro.hidden {
    opacity: 0;
}

.filler {
    height: 100vh;
    width: 100%;
}

#container {
    display: flex;
    justify-content: space-evenly;
}

#wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#wrapper p {
    height: 10vh;
    margin: 2vw;
    
    font-family: 'Press Start 2P', cursive;
    font-size: 3vw;
    text-align: center;
    color:white;
}

.scrollable {
    margin: 1vh;
    width: 90vw;

    background-color: #03045E;
    border: solid 2vw #010228;

    opacity: 0;
    transition: opacity 1000ms;
}

.scrollable.displayed {
    opacity: 1;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Press Start 2P', cursive;
    font-size: 4vw;
    color:white;

    width: 80%;
    height: 20vh;

    background-color: #023E8A;
    border: solid 10px black;
}

.item {
    width: 90%;
    height: 70%;
    margin: 10vh;
}