@font-face {
   font-family: 'AkzidenzGrotesk-Regular';
      src: local("AkzidenzGrotesk-Regular"), url('fonts/AkzidenzGrotesk-Regular.woff') format('woff');
   font-weight: normal;
   font-style: normal;
}

@font-face {
   font-family: 'AkzidenzGrotesk-Italic';
      src: local("AkzidenzGrotesk-Italic"), url('fonts/AkzidenzGrotesk-Italic.woff') format('woff');
   font-weight: normal;
   font-style: italic;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: black;
    font-family: 'AkzidenzGrotesk-Regular';
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
}

h1 {
    font-family: 'AkzidenzGrotesk-Regular';
}

em {
 font-family: 'AkzidenzGrotesk-Italic';   
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color: lightblue;
}

.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio (change as needed) */
}

#video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

button#info-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: black;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 1;

}

.hidden {
    display: none;
}

#credits {
    color: white;
    text-align: left;
    padding: 0 20px 0 20px;
    position: relative;
    margin: 0 auto; /* Center the element horizontally */
    max-width: 100%; /* Ensure it doesn't exceed the container width */
}

button#back-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: black;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    cursor: pointer;
    display: none;
}

#logos {
    width: 100%;
    display: flex;
    flex-flow: row;
    padding: 2vh 0 0 2vh;
    justify-content: space-between;
    color: white;
    text-align: center;
    position: relative;
}

.logo {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: inherit;
    margin: 0 20px; /* Adjust the margin as needed */
}

.logo img {
    width: inherit;
}

@media screen and (min-width: 768px) {
    /* For screens larger than 768px (desktop) */
    #credits {
        width: 33.33%; /* One-third of the page width */
    }

    button#info-button, button#back-button {
        position: absolute;
        top: 20px; /* Adjust the top position for desktop */
        right: 20px; /* Adjust the right position for desktop */
        bottom: auto; /* Reset the bottom position for desktop */
        left: auto; /* Reset the left position for desktop */   }

    .logo {
        width: 80%;
        max-height: 50%;
    }
}
