:root {
    --color-red: #e30613;
    --color-white: #ffffff;
    --color-dark-gray: #3c3c3c;
}

@font-face {
    font-family: 'Sofia Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/resources/css/fonts/Sophia_Sans_400.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Sofia Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(/resources/css/fonts/Sophia_Sans_700.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100dvh;
    position: relative;
    color: var(--color-white);

    font-family: "Sofia Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3 {
    font-family: "Sofia Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

#fixed-background {
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    background-image: url(/resources/images/background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.waves {
    background-image: url(/resources/images/waves_1.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.container {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1400px;
    gap: 2rem;
}

@media(max-width: 1400px){
    .container{
        padding-left: 16px;
        padding-right: 16px;
    }
}

.img-shadow {
    filter: drop-shadow(5px 5px 10px #000000);
}

.video-art-logo {
    width: 60%;
}

.exhibition {
    width: 40%;
}

main {
    position: relative;
    z-index: 2;
}

.blob {
    aspect-ratio: 1 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    min-width: 200px;
}

.blob span,
.blob h1,
.blob h2,
.blob h3,
.blob p {
    margin: 2rem;
}

.blob-red {
    color: var(--color-white);
    background-color: var(--color-red);
}

.blob-dark-gray {
    color: var(--color-white);
    background-color: var(--color-dark-gray);
}

.blob-white {
    color: var(--color-dark-gray);
    background-color: var(--color-white);
}

.blob-shadow {
    filter: drop-shadow(5px 5px 10px #000000);
}

.row{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}