@font-face {
    font-family: "Bebas";
    src: url(./assets/BebasNeue-Regular.ttf);
}

body{
    background: #232323;
    color: white;
    text-align: center;
    font-family: "Bebas";
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  transition: 0.2s ease;
}

h1{
    font-size: 30vh;
    margin-top: 250px;
    transition: 0.2s ease;
}

.menuButton{
    font-size: 50px;
    position: fixed;
    top: 0;
    left: 10px;
    transition: 0.2s;
}

.menuButtonHover{
    font-size: 60px;
    position: fixed;
    top: 0;
    left: 10px;
    transition: 0.2;
    cursor: pointer;
}

.sideMenu {
  position: fixed;
  top: 0;
  left: -100px;
  width: 70px;
  height: 100%;
  background-color: #2b2b2b;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 200px;
  transition: 0.2s ease;
  z-index: 2;
}

.sideMenu a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin: 30px 0;
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.2s, transform 0.2s;
}

.sideMenu a:hover {
  color: #bbbbbb;
  transform: rotate(180deg) scale(1.1);
  cursor: pointer;
}

@media screen and (max-width: 800px) {
    h1{
        font-size: 15vh;
        margin-top: 335px;
    }
}