/* @font-face {
    font-family: 'League Gothic';
    src: url('fonts/LeagueGothic-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
} */

@font-face {
    font-family: 'League Gothic';
    src: url('fonts/LeagueGothic-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

/* @font-face {
    font-family: 'League Gothic';
    src: url('fonts/LeagueGothic-Condensed.otf') format('opentype');
    font-weight: normal;
    font-style: condensed;
}

@font-face {
    font-family: 'League Gothic';
    src: url('fonts/LeagueGothic-CondensedItalic.otf') format('opentype');
    font-weight: normal;
    font-style: condensed italic;
} */

html, body {
    overflow: hidden;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

/* Removed the previous video styling and updated to match the provided image */
#background-video {
    position: absolute;
    bottom: 0;
    width: auto;
    height: auto;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
}

h1 {
    font-family: 'League Gothic', sans-serif;
    color: white;
    font-size: 3em;
    text-align: center;
    z-index: 1;
}

a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    z-index: 1;
    position: relative;
    top: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}