body {
    margin: 0;
    padding: 0;
    font-family: 'Cardo', serif;
  }
  
  *{
    box-sizing: border-box;
  }

  .logo{
  
  }

  .logo img{
    max-width: 75px;
    width: 100%;
  }

  .logo h2{
    font-size: 20px;
    margin-top: 0;
    background: rgb(0,0,8);
    background-image: linear-gradient(90deg, rgb(137, 137, 137) 0%, rgb(255, 255, 255) 100%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  
  #videoContainer {
    position: fixed;
    bottom: 93px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  #backgroundVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 36px;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  
  .text-content{
    width: 100%;
    background-color: #21201C;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .stay-tuned{
    font-size: 28px;
    font-weight: 900;
    
    margin: 0;
    color: #CCB070;	
    margin-left: 25px;
  }

  .golani-v{
    font-weight: 700;
    color: black;
    width: 100%;
    margin: 0;
  }


@media screen and (max-width: 768px) {
  .text-content{
    flex-wrap: wrap;
  }

  .stay-tuned{
    width: 100%;
    font-size: 32px;
  }

  .logo img{
    max-width: 100px;
  }
}