/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  min-width: 0;
  user-select: none;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image: url("../imgs/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}

/* 6. Improve media defaults */
img {
  display: block;
  max-width: 100%;
}


/* 8. Avoid text overflows */
p,
h3 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h3 {
  text-wrap: balance;
}



main {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url("../imgs/background.png") lightgray 50% / cover no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.logo {
  display: flex;
  padding: 24px;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, var(--Color-Neutrals-colors-Black, #060808) 57.6%);  position: sticky;
  top: 0;
  z-index: 10;
}
.logo-img {
  height: 40px;
  width: 150px;
  padding: 4px 0;
}

.content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 667px;
  margin: 0 auto;
  text-align: center;
  gap: 16px;
}

.content h3 {
  color: #DEC79F;
  text-align: center;
  font-family: Oswald;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
}
.content p {
  color: #fff;
  text-align: center;
  font-family: Oswald;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
}

/* French language adjustments */
body.fr .content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (min-width: 769px) {
  .logo-img {
    width: 300px;
    height: 84px;
  }
  .content h3 {
    font-size: 2.5rem;
  }
  .content p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (max-width: 768px) {
  .content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 375px) {
  .content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
