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

body {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    color: black;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

a,
a:visited,
a:hover,
a:active {
    color: black;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: saturate(30%);
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
    padding: 0 2rem;
    padding-bottom: 20rem;
    color: black;
}

.back-link {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    text-decoration: none;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    padding-top: 4rem;
    text-align: right;
    mask-image: linear-gradient(to bottom, transparent, black 2rem);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 2rem);
}

h1 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 1rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    padding-bottom: 4rem;
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -2rem;
    width: calc(100% + 4rem);
    mask-image: linear-gradient(to top, transparent, black 2rem);
    -webkit-mask-image: linear-gradient(to top, transparent, black 2rem);
}
