@import "https://www.nerdfonts.com/assets/css/webfont.css";

body {
    background-color: #252525;
    background-image: url("lukas-blazek-f-TWhXOrLiU-unsplash.jpg");
    margin: 0;
    font-family: monospace;
}

.nav {
    background: #141414;
    background: linear-gradient(180deg, rgba(20, 20, 20, 1) 0%, rgba(26, 26, 26, 0.98) 82%, rgba(26, 26, 26, 0.35) 100%);
    padding: 5px;
    padding-bottom: 20px;
    color: white;
    align-items: center;
    text-align: center;
    font-family: monospace
}

.nav img {
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: White;
    font-size: 15px;
}

.game {
    text-align: center;
    margin: 50px
}

button {
    background-color: #00000024;
    border: none;
    border-radius: 20px;
    padding: 10px;
    margin-left: 50px;
    font-family: monospace;
    color: White;
    font-size: 25px;
    transition: 0.4s;
}

button:hover {
    transform: scale(1.1)
}

.bottom {
    background: #000000;
    background: linear-gradient(0deg, rgb(14, 14, 14) 0%, rgba(0, 0, 0, 0.206) 100%);
    bottom: 0;
    position: fixed;
    width: 100%;
    align-items: center;
    text-align: center;
    color: white;
    padding: 10px;
}

.alert {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
    text-align: center;
    background-color: #070707;
    position: fixed;
    padding: 0;
    margin: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
}