.body {
    height: 100vh;
    width: 100vw;
}

.main {
    padding: 1.95em;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

.main--aimtrainer .section {
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    margin: auto;
    width: 100%;
    display: grid;
    gap: 1.95em;
    margin-bottom: 1.95em;
}

.main--aimtrainer .section:last-child {
    margin-bottom: 0;
}

.section__titre {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 1.65em;
    line-height: 1.5
}

.gamemode {
    text-decoration: none;
    color: black;
    overflow: hidden;
    border-radius: 3px;
    transition: all ease-in-out 0.2s;
}

.gamemode:hover {
    text-decoration: none;
    color: black;
    cursor: pointer;
    transform: translateY(-5px);
}

.gamemode:hover .gamemode__textes {
    background: linear-gradient(45deg, #88c131, #618930);
    border: #87c232 1px solid;
}

.unclickable {
    cursor: not-allowed;
    opacity: 80%;
    filter: grayscale(1);
}

.gamemode__infos {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gamemode__textes {
    padding: 0.80em;
    text-align: left;
    width: 100%;
    font-family: sans-serif;
    font-style: normal;
    font-size: 20px;
    line-height: 1.2;

    font-family: "Jura", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    border: 1px solid #618930;
    background: linear-gradient(45deg, #618930, #88c131);
    color: white;
}

.gamemode__description {
    display: none;
    font-size: 14px;
    color: rgb(212, 212, 212);
}

.gamemode__difficultes {
    font-size: 12px;
    color: rgb(212, 212, 212);
    font-style: italic;
}

