#demoContainer {
    display: flex;
    max-width: 2100px;
    gap: 20px;
}
@media screen and (max-width: 800px) {
    #demoContainer {
        flex-direction: column;
    }
}

#demoContainer > div {
    margin-top: 0;
    border-radius: 20px;
    padding-bottom: 20px;
}

.containerHeader {
    margin-top: 20px;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}

.demoContainerInner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    flex-shrink: 1;
    flex-grow: 0;
    margin-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.demoentry {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-color: rgb(255, 242, 239);
    /*box-shadow: inset 0 0 10px rgb(246, 205, 197);*/
    border-radius: 10px;
    padding: 20px;
    margin: unset;
    max-width: 700px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.demoentry div {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
    margin: unset;
}
.demoentry a {
    font-weight: bold;
    color: white;
}
.demoentry img {
    margin-top: 10px;
}

.demoTitle {
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}
.demoSubTitle {
    font-size: 20px;
    text-align: center;
}

.demoTag {
    border-radius: 5px;
    padding: 3px;
    width: 100px;
    border-width: 2px;
    border-style: solid;
    place-self: center;
}

.webgpu {
    border-color: #449500;
}

.webgl {
    border-color: #ff9a6e;
}

p, .demoTag {
}

.demoDesc {
    font-weight: 500;
    padding: 0px;
    margin: 0px;
}
.demoUsage {
    margin-bottom: 20px;
    font-weight: 500;
}
.demoDesc, .demoUsage {
    font-size: 15px;
}

#demoContainer img {
    bottom: 0;
    place-self: center;
    border-radius: 10px;
}


video {
    border-radius: 10px;
}

a {
    color: black !important;
}

.buttonMainPage {
    background-color: rgba(237, 96, 63, 0.15)
}
