@font-face {
  font-family: akuma; /* set name */
  src: url(../webfonts/akuma.otf); /* url of the font */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color:white;
    text-decoration: none;
}
body {
    background-color: black;
}
.page {
    display: block;
    height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
 
}
.page__logo {
    overflow: hidden;
    display: block;
    max-width: 100%;
}

.page__content {
    flex: 0 0 auto;
    padding: 20px;
    text-align: center;
    justify-self: end
}
.promo {
    font: 50px akuma;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.links {
    font-size: 30px;
}