@font-face {
    font-family: 'GothamBold';
    src: url(fonts/Gotham-Bold.ttf);
}

@font-face {
    font-family: 'Gotham';
    src: url(fonts/Gotham-Book.otf);
}

@font-face {
    font-family: 'GothamBold';
    src: url(fonts/Gotham-Bold.otf);
}

@font-face {
    font-family: 'GothamLite';
    src: url(fonts/Gotham-Light.otf);
}

.player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: black;
}

body {
    background: #040916;
    color: white;
    margin: 0px;
    padding: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    font-family: 'Gotham', 'Montserrat', arial;
}

.logo-image {
    margin-bottom: 40px;
}

h1 {
    color: #A7E6D7; 
    font-size: 36px;
    font-family: 'GothamBold';
    margin: 0px 0px 10px 0px;
}

h2 {
    font-size: 30px;
    font-family: 'GothamBold';
    margin: 0px 0px 20px 0px;
}

h3 {
    font-size: 21px;
    line-height: 35px;
}

p {
    font-size: 16px;
}

.divider {
    border-top: 3px solid #A7E6D7;
    border-radius: 5px;
    width: 209px;
    margin: auto;
}

.main-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/landing.png');
    background-size:cover;
}

.full-background {
    position: absolute;
    width: 100%;
}

.box-container {
    position: absolute;
    text-align: center;
    padding: 30px;
}

.live-feed-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.live-feed {
    width: 80%;
    height: 80%;
}

.show-hide {
    position: absolute;
    top: 0px;
    right: 5px;
    border-radius: 10px;
    background: rgb(0, 87, 118);
    padding: 7px;
    font-size: 12px;
    cursor: pointer;
}

#errorText {
    color: red;
    font-size: 18px;
}

.login-container {
    opacity: 0;
}

#passcode {
    margin: 20px;
}

.event-button {
    cursor: pointer;
    padding: 5px;
    background: rgb(0, 87, 118);
    border-radius: 20px;
    color: white;
    width: 200px;
    margin: 0 auto;
}