html, body {
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'Open Sans', sans-serif;
}

body {
    height: 100%;
}

video {
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

main {
    position: relative;
    opacity: 0;
    filter: blur (25px);
    transition: opacity 2s ease-in-out, filter 2s ease-in-out;
}

header {
    margin-top: 1em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header > img {
    width: 10em;
    height: 10em;
    border-radius: 100%;
    border: .1em solid #fff;
    box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
    object-fit: cover;
    position: relative;
}

header > h1 {
    display: inline-block;
    font-size: 0.8em;
    font-weight: bold;
    padding: .5em 1em;
    color: white;
    backdrop-filter: blur(10px) saturate(260%) contrast(180%);
    -webkit-backdrop-filter: blur(10px) saturate(260%) contrast(180%);
}

ul {
    box-sizing: border-box;
    list-style: none;
    padding: 2em;
    margin: 0 auto;
    max-width: 400px;
}

ul > li {
    background-color: rgba(240, 211, 201, 0.8);
    backdrop-filter: blur(10px) saturate(260%) contrast(180%);
    -webkit-backdrop-filter: blur(10px) saturate(260%) contrast(180%);
    border-radius: 10em;
    margin: 1.4em 0;
    padding: 1em;
    box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
}

ul > li > a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 0.5em;
    color: black;

}

.audio {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: contain;
    width: fit-content;
    height: fit-content;
    padding: 1em;
    border-radius: 10em;
    background-color: rgba(240, 211, 201, 0.8);
    box-shadow: rgb(28 32 93 / 24%) 0px 2px 8px 0px;
}

.audio:hover {
    cursor: pointer;
}