/* main.css */

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background: url(https://fairmedia.live/master/img/13.jpg);
    background-size: cover;
    background-position: center;
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 18fr) 1fr;
    gap: 5px;
    height: 100vh;
    padding: 4px;
    box-sizing: border-box;
}

.tile {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5em;
    color: #EFFEE8;
    background-color: rgb(0 0 0 / 60%);
    border: 1px solid #eee2e2;
    transition: background-color 0.3s ease;
    text-decoration: dashed;
    border-radius: 1px; 
}

.tile:hover {
    background-color: rgba(0, 0, 0, 0.75); /* Change de couleur au survol */
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }
}
