@font-face {
    font-family: 'WindSong';
    src: url('fonts/WindSong-Medium.ttf') format('truetype'),
         url('fonts/WindSong-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'BodoniModa';
    src: url('fonts/BodoniModa-VariableFont_opsz,wght.ttf') format('truetype');
}


html, body {
    box-sizing: border-box;
    height: 100vh;
}

body {
    font-family: 'BodoniModa', serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.main-wrapper {
    height: 100%;
    background-color: #170905;
    background-image: url("https://www.transparenttextures.com/patterns/xv.png");
    position: relative;
    z-index: 1;
}

.wrapperton {
    max-width: 1080px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.bg-border {
    background-color: #694f1b;
    background-image: url("https://www.transparenttextures.com/patterns/exclusive-paper.png");
    position: absolute;
    top: 0;
    left: -0.75rem;
    right: -0.75rem;
    bottom: 0;
    z-index: -1;
}

.content-wrapper {
    max-width: 1080px;
    height: 100%;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #111;;
    color: #fff;
    position: relative;
    z-index: 1;
}

h1 {
    text-align: center;
    font-family: 'WindSong', cursive;
    font-weight: 400;
    font-size: 2.5rem;
}

h2 {
    font-size: 1.25rem;
    font-weight: 500;
}

.video-container {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 1rem;
}