/*
 * Copyright (c) 2024 FullFreeGameplay
 *
 * This file is part of Cosmonade.
 *
 * Cosmonade is proprietary software: you may not redistribute it or modify
 * it without the express written consent of FullFreeGameplay.
 *
 * Cosmonade is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * LICENSE file for more details.
 */


 /* company.css */
 #main-section{
    background: linear-gradient(to bottom, #dfa402, #25af2c);
}
.fullfreegameplay {
    margin-top: 30px;
    width: 80%;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-family: sans-serif;
}
.paire {
    width: 30%;
    background-color: rgba(192, 192, 192, 0.342)
}
.impaire {
    width: 55%;
    background-color: rgba(192, 192, 192, 0.342)
}
.categorie {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    border-radius: 3px;
}
.titre {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: rgba(153, 153, 153, 0.342);
}
.textTitre {
    font-size: 22px;
    margin-left: 10%;
}
.description {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.textDescription {
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 5%;
    margin-top: 3%;
}
p {
    text-indent: 12px;
}
.marge {
    height: 20px;
}
.lB {
    min-width: 120px;
    height: 36px;
    background-color: rgba(163, 161, 161, 0.5);
}
#donnation a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}
#remerciements .textDescription {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    padding: 6px;
}
.partenaires {
    width: 100%;
}
.partenaires:hover {
    cursor: pointer;
    background-color: rgba(163, 161, 161, 0.5);
}
@media (max-width: 1000px) {
    .fullfreegameplay {
        width: 90%;
        padding-left: 5%;
        padding-right: 5%;
    }
}