body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevent scrolling */
    font-family: 'Black Ops One', cursive;
    color:white;
}

video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.social-media-links {
    position: fixed;
    top: 0;
    bottom: 0;
    width: clamp(40px, 50px, 60px); /* Adjust the width as needed */
    background-color: rgba(50,100,150,0.2); /* Change to your preferred color */
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto; /* Enable vertical scrolling */
    z-index: 10; /* Ensure it's above the background video */
    padding: 10px 5px;
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: #333 #333; /* For Firefox: thumb and track color */    
}

h1, h2, h3, h4, h5, h6 {
    margin:2px 0px;
    text-align: center;
}


.right{
    right: 0;
}

.left{
    left: 0;
}

.bottom{
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: lighter;
    font-size: x-small;
}

.center-text{
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-align: center;
}

.top{
    top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.social-media-links a {
    margin: 0.75vw 0;
    color: white; /* Change link color as needed */
    text-decoration: none;
}

.social-media-links div {
    margin: 0.75vw 0;
    color: white; /* Change link color as needed */
    text-decoration: none;
    font-weight: lighter;
    font-size: x-small;
}

.social-media-links img {
    width: 100%; /* Adjust image width inside the block */
    max-width: clamp(20px, 30px, 50px); /* Set maximum width for images */
}

/* For Webkit (Chrome, Safari, etc.) */
.social-media-links::-webkit-scrollbar {
    width: 8px; /* Adjust width of the scrollbar */
}

.social-media-links::-webkit-scrollbar-track {
    background: #333; /* Match the background color of the sidebar */
}

.social-media-links::-webkit-scrollbar-thumb {
    background-color: #333; /* Match the scrollbar thumb to the background */
    border-radius: 4px; /* Optional: to round the corners */
}

.navbar {
    position: fixed;
    left: 25vw;
    right: 0;
    background-color: rgba(50,100,150,0.2);
    color: white;
    padding: 10px 0;
    text-align: center;
    z-index: 10;
    width: 50vw;
}

.modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    color:rgba(50,100,150,1);
}

.modal-link {
    cursor:pointer;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888; 
    width: clamp(85%, 80%, 75%);
    border-radius:2vw;
}

.modal-content-text{
    position: relative;
    padding:20px 0px;
    text-align: center;
}

.modal-content-blocks-container{
    position: relative;
    padding:20px 0px;
    text-align: center;
    display: grid;
    justify-content: stretch;
}

.modal-content-block{
    position: relative;
    display:inline-block;
    min-height:400px;
    height:auto;

    padding:10px;
    margin:10px;
    text-align: center;
    color:grey;
}

.modal-content-block-selector{
    position: relative;
    display:inline-block;
    min-height:20px;
    height:auto;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
    color:grey;
    cursor:pointer;
}

.modal-content-form{
    position: relative;
    padding:20px 0px;
    text-align: center;
}

.closeModal {
    position: relative;
    color: #aaa;
    /* float: right; */
    font-size: 28px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    border-bottom: black 1px solid;
    padding: 10px 0px;
    font-size: 8px;
    margin-top: -20px;
}



.closeModal:hover,
.closeModal:focus {
color: black;
text-decoration: none;
cursor: pointer;
}

.material-symbols-outlined {
    font-variation-settings: 
    'FILL' 1, 
    'wght' 700, 
    'GRAD' 5, 
    'opsz' 40;
    color: rgba(10,10,10,0.5);
  }

.email-send-button{
    font-size: 11px;
    cursor: pointer;
  }


/* Responsive design for small screens */
@media screen and (max-aspect-ratio: 0.86){

    #video-container video {
        height: 100%;
    }

}

.modal-content-blocks-container video{
    height: 100%;
    border-top: solid 2px black;
    padding-bottom: 20px;
    padding-top: 20px;
}

.mailing-list-terms-conditions h6{
    font-size: 9px;
}

.mailing-list-terms-conditions h5{
    font-size: 10px;
}

.font-button{
    background-color: rgba(190,190,190,1);
    display: inline-flex;
    padding: 2px;
    margin:0px 1px;
    border-radius: 5px;
    cursor: pointer;
}

.font-button-divider{
    width:10px;
    display: inline-flex;
}

.hidden{
    display:none;
}

/* Move*/

#video-container  {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }
  
  #video-container video,
  .video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
  }
  
  #video-container .video-overlay {
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    width: 100%;
  }
  
  #video-container .video-content {
    z-index: 99999;
    position: absolute;
    height: 100%;
    width: 100%;
  }
  
  #video-container .video-content .inner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
  }
  
  #video-container .video-content .inner h1 {
    font-size: 64px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: center;
  }
  
  #video-container .video-content .inner em {
    font-style: normal;
    font-weight: 200;
  }
  
  
  #video-container .video-content .inner p {
    color: #fff;
    font-size:  1vw;
    font-weight: 200;
    letter-spacing: 1.5px;
    text-align: center;
    padding: 0px 30px;
  }
  
  #video-container .video-content .inner a {
    color: #fff;
    text-decoration: underline;
  }
  
  #video-container .video-content .inner .scroll-icon {
    margin-top: 45px;
  }
