@font-face {
  font-family: 'SourceSans3';
  src: url('/fonts/SourceSans3-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'SourceSans3';
  src: url('/fonts/SourceSans3-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'SourceSans3', sans-serif;
  background: linear-gradient(135deg, #007aff 0%, #2196f3 100%);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #007aff 0%, #2196f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
svg {
width: 64px !important;
height: 25px !important;
}

#main-content {
  display: none;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  padding: 96px 48px;
  flex: 1;
}

.text {
  max-width: 320px;
}

.logo {
  display: block;
  width: 200px;
  max-width: 100%;
  margin-bottom: 96px;
}

.title {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
}

.device {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.visuel {
  width: 100%;
  max-width: 660px;
  height: auto;
}

footer {
  font-size: 14px;
  text-align: center;
  padding: 0 24px 24px;
}

/* -------- Responsive -------- */
@media (max-width: 899px) {
    body{
    justify-content: start;
    }
  .container {
    padding: 24px 24px 32px;
    flex-direction: column;
    gap: 32px;
    text-align: center;
     flex: none;
  }
  .logo {
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
    width: 120px;
  }
  .title {
    margin-bottom: 16px;
  }
  .text {
    max-width: none;
  }
}
