body {
    background-color: rgb(24, 26, 29);
    color: white;
}

main a:visited {
    color: black;
    opacity: 1;
}

#hero {
    min-height: 17.5em;
    background-image: url("../../assets/home_banner.png");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 150%;
}

#hero>h1 {
    text-align: center;
}

.hero_btn {
    color: white;
    text-decoration: none;
    text-align: center;
    display: block;
    background-color: rgb(0, 0, 50);
    padding: 0.5em 1em;
    border-radius: 15px;
    box-shadow: 3px 3px 5px rgba(255, 255, 255, 0.351);
}

.hero_btn:hover {
    background-color: black;
    color: white;
    box-shadow: 1px 1px 5px #f0ffff;
}


#games {
    min-height: 100vh;
    align-content: center;
}

#games>h2 {
    text-align: center;
    margin-bottom: 2em;
}

#cards {
    margin: 0 auto;
    align-items: center;
    max-width: 55em;
    font-size: 120%;
}

.card {
    background-color: rgb(40, 42, 45) !important;
    color: white !important;
    /* height: 100%; */
    margin: 0 auto !important;

    transform: scale(100%) !important;
    transition: all 0.2s;
    width: 18rem !important;
}

.card:hover {
    transition: all 0.3s;
    transform: scale(102.5%) !important;
}

.card>a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: black;
    background-color: #f0ffff;
    margin: 0.5em;
    border-radius: 15px;
    box-shadow: 3px 3px 5px black;
    padding: 0.2em;
}

.card>a:hover,
.card>a:focus {
    background-color: rgb(40, 42, 45);
    color: white;
    box-shadow: 1px 1px 5px #f0ffff;
}

.card-title {
    text-align: center;
}

#resources {
    margin-top: 6em;
    overflow: hidden;
    margin-bottom: 3em;
}

#resources a{
    color: white;
}

#resources a:visited{
    color: purple;
}