@charset "utf-8";

/* maincontainersoftware */

.maincontainersoftware{
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    row-gap: 8rem;
}

.releasecontainersoftware{
    gap: 2rem;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.softwarecontainer{
    display: flex;
    width: 25%;
    height: 18rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.softwarecontainer:has(p.true){
    display: flex;
}

.softwarecontainer:has(p.false) , .releasecontainer:has(p.false){
    display: none;
}

.releasecontainer:has(p.true){
    display: grid;
}

.softwareicon{
    width: 12rem;
    height: 12rem;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    margin-bottom: 1rem;
    border-radius: 1.25rem;
    box-shadow: 1px 1px 4px var(--black);
}

.softwarename , .softwareversion{
    font-weight: normal;
    text-align: center;
    color: var(--under);
}

.softwarename{
    font-size: 2.5rem;
    line-height: 3rem;

}

.softwareversion{
    font-size: 1.5rem;
    line-height: 2rem;
}

.releasecontainer{
    width: 39rem;
    height: auto;
    aspect-ratio: 79 / 55;
    background-color: var(--middle);
    border-radius: 2rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 8rem 1fr;
    grid-template-rows: 8rem 1fr;
    gap: 2rem;
}

.releasecontainer .softwareicon{
    width: 8rem;
    height: 8rem;
}

.releasecontainer .softwarename{
    font-size: 3rem;
    line-height: 3rem;
    font-weight: bold;
    text-align: left;
    color: var(--accent);
}

.releasecontainer .softwarename span{
    font-size: 1.5rem;
    line-height: 1.5rem;
}

.releasetext{
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    font-size: 2rem;
    line-height: 3rem;
    color: var(--under);
    overflow: scroll;
}