﻿#mainContainer {
    width: 100%;
}


#webarchTexteIntro {
    margin-top: 3rem;
    padding: 0 10%;
    text-align: center;
}

#webarchSitesContainer {
    margin-top: 3rem;
    padding: 0 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 3rem;
}

.webarchSiteContainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 30%;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 0.4rem;
    box-sizing: border-box;
    border-style: solid;
    border-color: transparent;
    background-color: var(--fuchsiaTransparent);
    border-width: 1px;
    position: relative;
}

    .webarchSiteContainer:hover {
        border-color: var(--fuchsia);
    }

.webarchSiteImg {
    width: 100%;
    aspect-ratio: 16/9;
}

.webarchSiteTexte {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
}

.webarchSiteAspiration, .webarchSiteVolume {
    font-size: 0.8rem;
}

.webarchSiteWithDN {
    font-size: 0.5rem;
    padding: 0.1rem 0.2rem;
    vertical-align: super;
    background-color: var(--fuchsia);
    color: white;
    border-radius: 10%;
    margin-left: 0.3rem;
}

.webarchSiteContainer .webarchSiteWithDN {
    position: absolute;
    z-index: 10;
    top: 0.5rem;
    right: 0.5rem;
}

@media (orientation:portrait) {
    .webarchSiteContainer {
        width: 100%;
        border:none;
    }
}
