@font-face {
  font-family: pixel; /* set name */
  src: url("/bbt.ttf"); /* url of the font */
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: pixel;
    background-color: black;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    height: 100%;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    flex: 1;
    margin: 0 auto;
    background-color: black;
}

#logo {
    margin: -110px -75px -110px -75px;
    image-rendering: pixelated;
}

#center {
    display: grid;
    grid-template-areas:
        "logo logo logo logo"
        "title title title title"
        "twitch git itch stuff"
        "footer footer footer footer";
    justify-content: center;
    align-items: center;
    height: 800px;
    width: 800px;
    color: #c400b6;
}

a {
    color: #d511c7;
    
}

a:hover {
    color: white;
}

.bordered { 
      border: solid 4px #424542;
      box-shadow: 4px 4px #e7dfe7,
              -4px -4px #e7dfe7,
              4px -4px #e7dfe7,
              -4px 4px #e7dfe7,
              0 -8px #9c9a9c,
              -8px 0 #7b757b,
              0 8px #424542;
}

.main-link {
    text-align: center;
    font-size: 20px;
}

#center div.logo {
    grid-area: logo;
}

#center div.page-title {
    grid-area: title;
    margin-top: -75px;
    text-align: center;
    font-size: 36px;
    color: #c400b6;
}

#center div.twitch {
    grid-area: twitch;
}

#center div.git {
    grid-area: git;
}

#center div.itch {
    grid-area: itch;
}

#center div.stuff {
    grid-area: stuff;
}

#center div.footer {
    grid-area: footer;
}

footer {
    height: 60px;
}
