:root {
    --primary-color: hsl(91, 100%, 50%);
    --primary-color-dark: hsl(91, 100%, 40%);
    --primary-color-light: hsl(91, 100%, 70%);
    --secondary-color: hsl(15, 100%, 50%);
    --secondary-color-dark: hsl(15, 100%, 20%);
    --secondary-color-light: hsl(15, 100%, 55%);
    --tirtiary-color: hsl(271, 100%, 50%);
    --bg-color-a: hsl(15, 75%, 50%);
    --bg-color-b: hsl(271, 50%, 50%);
}

@font-face {
    font-family: DungeonChunk;
    src: url("../fonts/DungeonChunk.ttf");
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    background: linear-gradient(45deg, var(--bg-color-a), var(--bg-color-b));
    background-size: cover;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    width: 33%;
    min-height: 50%;
    text-align: center;
    font-size: 2em;
    padding: 0 0.5em;
}

@media only screen and (max-width:800px) {
    main {
        width: 100%;
    }
}

.buttons {
    display: flex;
    flex-direction: column;
}

.button {
    display: flex;
    flex-direction: row;
    font-size: 0.75em;
    text-decoration: none;
    margin-bottom: 0.75em;
    padding: 0.25em;

    background-color: var(--primary-color);
    color: black;
    text-align: center;
    border: 2px solid var(--primary-color-dark);
    border-radius: 0.5em;
    cursor: pointer;

    box-shadow: 10px 10px 10px rgba(0,0,0,0.5);

    transition: background-color  0.1s ease-in-out;
}

.button:hover {
    background-color: var(--primary-color-light);
}

.button:active {
    background-color: var(--primary-color-dark);
}

.button span {
    font-family: DungeonChunk, sans-serif;
    font-size: 1.5em;
    position: relative; 
    bottom: 3px;
}

.button img {
    display: inline-block;
    position: relative;
    top: 3px;
}

.button div {
    box-sizing: border-box;
}

.button div:first-child {
    width: 50px;
    float: left;
    padding-right: 5px;
}

.button div:last-child {
    float: right;
    padding-left: 5px;
    flex-grow: 1;
    margin-right: 50px;
}

.logo {
    margin-bottom: 2em;
    transform: rotate3d(1, 1, 0, 0deg);
    filter: drop-shadow(10px 10px 10px black);
    transition: filter 0.3s ease-in-out, transform 0.3s ease-out;
}

.logo:hover {
    filter: drop-shadow(0px 20px 10px black);
    transform: rotate3d(1, 1, 0, 30deg);
}