body {
    margin: 0;
    padding: 50px;

    background-image: url("background.png");
    background-repeat: repeat;

    font-family: monospace;
    color: white;
}

h1 {
    margin: 0;
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.page {
    max-width: 1000px;
    margin: auto;
    position: relative;
    background: #000;

    border: 5px solid #555;

    padding: 40px;
}


.header-content {
    text-align: center;
    margin-bottom: 50px;
}

.header-content h1 {
    margin: 0;
}

.header-content p {
    margin-top: 15px;
}


.banner-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.banner-list a {
    display: block;
    width: 100%;
    max-width: 900px;
}

.banner-list img {
    display: block;
    width: 100%;
    height: auto;

    transition: transform .2s ease;
}

.banner-list img:hover {
    transform: scale(1.02);
}


/*truc pour que le mobile soit responsive*/

@media (max-width: 800px) {

    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 500px) {

    .icon-grid {
        grid-template-columns: 1fr;
    }

}

/*lien normal*/
a:link {
    color: #ff66ff;
}

/*déja visité*/
a:visited {
    color: #d64fd6;
}

/*hover*/
a:hover {
    color: #ffffff;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;

    border: 3px solid #555;
    box-sizing: border-box;
}

.download-gif {
    margin-top: 30px;
}

.download-gif img {
    width: 100%;
    height: auto;
    display: block;
}

.project-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.supplement-banner {
    margin-top: 25px;
}

.supplement-banner img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.design-project {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 3px solid #555;
}

.design-project:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.design-project h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.design-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 25px;
}

.design-gallery a {
    display: block;
    overflow: hidden;
}

.design-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border: 3px solid #555;
    box-sizing: border-box;
    transition: transform 0.2s ease;
}

.design-gallery img:hover {
    transform: scale(1.03);
    cursor: zoom-in;
}

.sticker {
    position: absolute;

    top: -35px;
    right: -35px;

    width: 180px;
    height: auto;

    transform: rotate(12deg);

    z-index: 100;

    pointer-events: none;
}