/* ------------------------- reset -------------------------------- */

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none; /*─ Debug font size on iphone when landscape orientation ─*/
  -webkit-font-smoothing: subpixel-antialiased; /*─ Debug safari font weight when fixed element on the page ─*/
  -webkit-font-smoothing: antialiased; /*─ idem : Debug safari font weight when fixed element on the page ─*/
}
html,
body,
nav,
header,
footer,
div,
span,
h1,
h2,
h3,
p,
a,
img,
ul,
li,
table,
form,
label,
input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  border: 0;
}

/* ------------------------- styles -------------------------------- */

@font-face {
  @font-face {
    font-family: "Bebas Neue";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/bebasneue/v9/JTUSjIg69CK48gW7PXoo9WdhyyTh89ZNpQ.woff2)
      format("woff2");
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
      U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }
}
@font-face {
  font-family: Heineken;
  src: url(../fonts/HEINEKEN.TTF);
}

.bg {
  background-color: #000;
  background-image: url(../images/bg.png);
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.content-ext {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.line1 {
  font-weight: normal;
  font-size: 5rem;
  color: #345437;
  text-align: center;
  font-family: Bebas Neue;
}
.line2 {
  font-weight: normal;
  font-size: 7.8rem;
  color: #345437;
  text-align: center;
  font-family: Bebas Neue;
}
.red {
  color: #be131d;
}
.line3 {
  font-weight: normal;
  font-size: 8.5rem;
  color: #345437;
  text-align: center;
  font-family: heineken;
}
.freddy {
  height: 100%;
  object-fit: fill;
  position: absolute;
  left: 0;
  bottom: 1px;
}
.content-ext::after {
  content: "";
  position: absolute;
  bottom: 50px;
  right: 350px;
  width: 65vw;
  height: 3px;
  background-color: #be131d;
  z-index: 10;
}
.content-ext::before {
  content: "";
  position: absolute;
  bottom: 25%;
  right: 30px;
  width: 3px;
  height: 50%;
  background-color: #be131d;
  z-index: 15;
}
.logo {
  position: absolute;
  bottom: 50px;
  right: 30px;
  z-index: 20;
  width: 250px;
}

.etoile {
  position: absolute;
  bottom: 75%;
  right: 0;
  width: 100px;
  z-index: 25;
}

/* ------------------------- media queries -------------------------------- */
@media screen and (max-width: 600px) {
  html {
    font-size: 10px;
  }

  .etoile {
    width: 50px;
  }
  .content-ext::before {
    bottom: 15%;
    right: 10px;
    height: 60%;
  }
  .content-ext::after {
    right: 70%;
    width: 25vw;
    bottom: 10px;
  }
  .logo {
    bottom: 10px;
    right: 10px;
  }
}
