/* Global styles */

html,body{
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}
.video{
    z-index: -3;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(70%) contrast(70%);
  }
  

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  .overlay h1 {
    margin-bottom: 2%;
    font-family: "citrus-gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 7vw;
    line-height: 100%;
    font-weight: 100;
  }
  
  .overlay button {
    font-family: "harman-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5vw;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
    width: 50%;
    height: 7vh;
    border: 0.3vw solid #00B934;
    border-radius: 3vw;
    transition: background-color 0.2s ease-in-out;
    background-color: transparent;
  }
  
  .overlay button:hover {
    background-color: #00B934;
    color: white;
  }
  
  #language-select {
    padding: 2vw;
    font-family: "harman-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    width: 10vw;
    font-size: 1.3vw;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    cursor: pointer;
    left: 20%;
  }

  #language-select:hover {
    color: #00B934;
  }
  
  #language-select:focus {
    outline: none;
  }