* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Mixone';
    src: url('fonts/MIXONE.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Sorren';
    src: url('fonts/Sorren_Medium.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('fonts/RobotoMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "Roboto";
    line-height: 1.6;
    background-color: #f4f4f4;
    color: rgb(157, 157, 157);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #111;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
}

h1, h2, h3 {
    font-family: 'Mixone';
    text-align: center;
}

h1 {
    font-size: 4rem;
    /* color: transparent; */
    color: rgb(157, 157, 157);
    text-shadow: 2px 2px #111,
        3px 3px #555;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-variant-ligatures: normal;


}

.bullfight {
    font-family: "Sorren";
    font-size: 2rem;
    margin-top: -0.5rem;
}

p a {
    color: rgb(157, 157, 157);
    text-decoration: none;
    text-transform: uppercase;
}

p {
    text-align: center;
}

section {
    margin-bottom: 3rem;
}

.callout {
    background: rgb(157, 157, 157) ;
    color: #333;
    padding: 0rem 1rem;
    text-decoration: underline;
    border-top-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

header {
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9; /* Ensures the video maintains a 16:9 ratio */
    margin-bottom: 20px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.details {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.festivals  {
    width: 100%;
    filter: brightness(0) invert(1) contrast(10000%) grayscale(100%) brightness(0.6);

}

.festivals img {
    width: 128px;
    clip-path: inset(10px 0 10px 0);
}

.festivals ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
}

.festivals li:not(:last-child) {
}

li {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

footer {
    color: #444;
}

img.portrait {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    margin-right: 1rem;
}

@media (max-width: 768px) {
    header {
        margin-top: 1rem;
    }

    section {
        margin-bottom: 2rem;
    }


    .details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .details > div {
        margin-bottom: 2rem;
    }
    body {
        padding: 10px;
    }

    h1 {
        font-size: 2.5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .video-container {
        max-width: 100%;
    }
}

