
body {
    background-color: #00000F;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: #001D3F;
    font-size: 1rem;
    box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem, rgba(2, 8, 20, 0.1) 0px 0.075rem 0.175rem;
    height: 100%;
    width: 100%;
    border-radius: 4px;
    transition: all 500ms;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rules {
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.card:hover {
    box-shadow: rgba(3, 8, 20, 0.1) 0px 0.35rem 1.175rem, rgba(2, 8, 20, 0.08) 0px 0.175rem 0.5rem;
    /*transform: translateY(-3px) scale(1.01);*/
    transform: translateY(-3px);
}

.command-text {
    background: #222222;
    color: turquoise;
}

.console-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    display: grid;
    gap: 1rem;

    grid-template-columns: repeat(auto-fit, minmax(500px, 700px));
}

.img-fit img {
    display: block;

    max-width: 80%;
    max-height: 100%;
}