html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Hide scrollbars */
  }
  #video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Place the video behind all other elements */
    object-fit: cover; /* Cover the entire screen */
  }
  .video-overlay {
    position: fixed;
    background: #00000026;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 2;
}
.main-container {
    position: fixed;
    z-index: 3;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
  .mainapp {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 80px;
}

.mainapp .flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.mainapp a.lang-icon {
    width: 130px;
    margin-bottom: 10px;
}

.mainapp a.lang-icon img {
    width: 100%;
}

.mainapp h1 {
    text-align: center;
    color: #fff;
    font-size: 2.1rem;
    margin-top: 15px;
    font-weight: 700;
}

.mainapp h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 400;
}

.mainapp .social {display: flex;gap: 8px;}

.mainapp .social a {
    color: #000;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: unset;
    font-size: 1.2rem;
}