body {
    background-image: url('/assets/imgs/wallpapers/drillx.webp');
}

#notice {
    background-image: url('/assets/imgs/misc/infoBar.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;

    margin: auto;
    width: 400px;
    height: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.figuresGames {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px;
    justify-items: center;
    
    margin-bottom: 20vh;
}

.figuresGamesDiv {
    background-color: rgba(187, 187, 187, 0.7);
    border-radius: 20px;

    border-color: rgb(187, 187, 187);
    border-style: solid;
    border-width: 2px;

    width: 100%;
}
.figuresGames a {
    margin: 0px;
    display: block;
    transition: all 0.3s;
}

.figuresGames a:hover {
    transform: scale(1.1);
}

#d1 {
    padding-top: 10px;
    grid-row: 1 / 2;
}

#d1 a {
    display: inline-block;
    width: 30%;
}

#d1 img {
    width: 90%;
}

#d2 {
    grid-column: 2 / 4;
}

#d3 {
    grid-column: 1 / 3
}

#d4 {
    grid-column: 3 / 4
}