@font-face {
    font-family: GameOver;
    src: url(assets/fonts/game_over.ttf);
}

body {
    background-color: #969696;
}

h1 {
    font-family: GameOver;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h3 {
    font-family: GameOver;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.games {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.games button {
    /* transition: transform 0.5s; */
    border: 0px;
    border-radius: 0 0 0.4vw 0.4vw;
    width: 8vw;
    padding-top: 0.5vh;
    padding-bottom: 0.7vh;
}

.icon a {
    text-decoration: none;
    transition: transform 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 0.4vw;
    margin-left: 1.5vh;
    margin-right: 1.5vh;
    margin-bottom: 3vh;
}

.icon a:hover {
    transform: scale(1.2);
}

.icon img {
    border-radius: 0.4vw 0.4vw 0 0;
    width: 8vw;
    height: auto;
}