body{
    overflow: hidden;
}

figure{
    position: fixed;
    top:0;
    left: 0;
    margin: 0;
    height: 100%;
    width: 40%;
    overflow: hidden;
}

figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

#container{
    position: fixed;
    left: 40%;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem 2rem 2rem;
    box-sizing: border-box;
    height: 100%;
    overflow-y: auto;
}

.event{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10%;
    box-sizing: border-box;
}

.event > div{
    width: 100%;
    padding: 2rem 0;
}

.event:first-child > div{
    padding-top: 0;
}

.event:not(:last-child) > div{
    border-bottom: 1px solid black;
}

.event iframe{
    margin-top: 1em;
    width: 100%;
    aspect-ratio: 560/315;
}

h1{
    font-size: inherit;
    margin-top: 0;
    text-align: center;
}

h2, h3, h4{
    font-size: inherit;
    font-family: "DM Mono";
    margin:0;
    text-align: center;
}

p{
    text-align: center;
}

#ours dt{
    margin: 0;
}

#ours dd{
    margin: 0 0 0 1.5em;
    font-family: "DM Mono";
}

#participants dl:first-child{
    margin-top: 0;
}

@media (max-width: 992px){

    figure{
        display: none;
    }

    #container{
        left: 0;
        width: 100%;
    }

    .event iframe{
        width: 100%;
    }

}

@media (max-width: 768px){

}

@media (max-width: 576px){

    .event{
        padding: 0;
    }

}