/* fonts */

@font-face {
  font-family: humantooth;
  src: url(/fonts/humantooth-type-v1.ttf); /* shoutout humantooth ! https://humantooth.neocities.org/home https://humantooth.neocities.org/font-table*/
  }
  
@font-face {                  
  font-family: 'AnalogueOS';
  src: url(/fonts/AnalogueOS-Regular.woff) format('woff');
  font-weight: normal;
  font-style: normal;
  } 

@font-face {                  
  font-family: 'Another-Birdhouse-Light';
  src: url(/fonts/Another-Birdhouse-Light.ttf);
  font-weight: normal;
  font-style: normal;
  } 
        
h1 {
  font-family: humantooth;
  justify-content: center;
  font-size: 4rem;
  }

p {
  font-family: AnalogueOS;
  font-size: 1.5rem;
  justify-content: center;
  }  
  
/* body */

body {
  background-image: url(/images/backgrounds/cozyroom1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-shadow: 2px 2px black;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 100vh;
  }

.container {
  max-width: 400px;
  height: auto;
  position: relative;
  text-align: center;
  }

.continue {
  position: relative;
  width: 110px;
  height: auto;
  -webkit-animation: pop 1s ease-in-out infinite alternate;
 animation: pop 1s ease-in-out infinite alternate;
 -moz-animation: pop 1s ease-in-out infinite alternate;
  }
    
@keyframes pop {
from {
transform:scale(0.95)
}

50% {
transform:scale(1)
}

to {
transform:scale(0.95)
}
}     
    

.monitor {
  position: absolute;
  width: 110px;
  height: auto;
  top: 160px;
  left: 10px;
  z-index: 3;
  }