
:root {
    --slide-height: 100vh;
    --box-shadow-color: rgba(0,0,0,0.5);
}

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.slide {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: center / cover;
    padding: 40px 0;
}

.slide > * {
    margin: 5px;
    border-radius: 4px;
}

.slide a img {
    border-radius: 4px;
}


.slide h1 {
    font-weight: bolder;

    padding: 10px;
    border-radius: 4px;
    backdrop-filter: blur(20px) brightness(80%);
}

.slide h2 {
    font-weight: normal;
    text-align: center;

    padding: 10px;
    border-radius: 4px;
    backdrop-filter: blur(20px) brightness(80%);
}

.slide h3 {
    flex-basis: 100%;
}

.slide a {
    font-weight: bolder;
}

.slide p {
    font-weight: normal;
    max-width: 600px;
    padding: 10px;
    border-radius: 4px;
    backdrop-filter: blur(20px) brightness(80%);
}

.slide span {
    margin: 0;
    flex-basis: 100%;
}

.slide img {
    position: relative;
    max-width: calc(100% - 10px);
    max-height: 300px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}

.slide video {
    position: relative;
    max-width: calc(100% - 10px);
    max-height: 300px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}

.slide iframe {
    position: relative;
    max-width: calc(100% - 10px);
    max-height: 300px;
    box-shadow: 0 0 10px var(--box-shadow-color);
}

.gallery {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    height: 300px;
    width: 100%;
}

.gallery > * {
    background: center / cover;
    flex: 1;
}

.gallery h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    font-weight: bolder;
    padding: 10px;
    border-radius: 4px;
    backdrop-filter: blur(20px) brightness(80%);
}

.no-shadow {
    box-shadow: none !important;
}

.circle-shadow {
    border-radius: 50%;
}