
html, body {
    height: 100%;
}

html {
    display: table;
    margin: auto;
}

body {
    display: table-cell;
    vertical-align: middle;
}

.footer {
    font-size: 10px;
    font-family: Arial, serif;
    text-align: left;
    color: aliceblue;
    position: absolute;
    padding: 6px;
    margin: 0;
    left: 0;
    bottom: 6px;
    background-color: rgba(252, 68, 193, 0.5);
    width: 100%;
}

.content {
    max-width: 500px;
    margin: auto;
    text-align: center;
}

@font-face {
    font-family: 'Phantom';
    src: url("content/phantomstorm3dital.ttf");
}

.image {
    vertical-align: middle;
}

.title {
    color: aliceblue;
    font-family: Phantom, serif;
    font-size: 100px;
}

.buttons-section {
    margin: auto;
    text-align: center;
}

.button-discord {
    color: snow;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: cornflowerblue;
    cursor: pointer;
    border-radius: 8px;
    font-family: Arial, serif, bold;
}

.button-discord:hover{
    cursor: pointer;
    transform: scale(1.03);
    border: 2px dashed cornflowerblue;
    background-color: #4c62ee;
}

.button-steam {
    color: snow;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: grey;
    cursor: pointer;
    border-radius: 8px;
    font-family: Arial, serif;
}

.button-steam:hover{
    cursor: pointer;
    transform: scale(1.03);
    border: 2px dashed grey;
    background-color: #3c3c44;
}

