@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'inter';
  background-color: #0d2d43;
  color: #FFF;
  font-size: 12px;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.video-background {
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto; 
  z-index: -100;
  background-size: cover;
}

.video-background video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.main {
  position: relative;
  z-index: 1;
}

.main .main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.main .logo {
  width: 30%;
  margin-top: 100px;
}

.main .logo-collaborator {
  width: 15%;
}

@media only screen and (max-width: 1024px) {
  .main .logo {
    width: 70%;
  }

  .main .logo-collaborator {
    width: 50%;
  }

}