@font-face {
  font-family: 'LOVELO';
  src: url('/font/Lovelo/Lovelo_Black.otf');
  font-weight: normal;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-image: url(BarisuBg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'LOVELO', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main {
  color: #be1e2d;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.main h1 {
  font-size: 148px;
  margin: 0 0 85px 0;
  padding: 0;
  line-height: 1;
}

.main hr {
  width: 700px;
  height: 5px;
  margin: 0 auto 135px auto;
  border: none;
  background-color: #be1e2d;
}

.main > p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: large;
  margin: 10px 0;
}

.main > p:first-of-type {
  font-family: 'LOVELO';
  font-size: x-large;
  font-weight: bold;
}

/* ✅ Partie mobile / responsive */
@media screen and (max-width: 768px) {
  .main h1 {
    font-size: 20vw;
    margin-bottom: 40px;
  }

  .main hr {
    width: 80%;
    height: 4px;
    margin-bottom: 60px;
  }

  .main > p {
    font-size: 3vw;
  }

  .main > p:first-of-type {
    font-size: 3.5vw;
  }
}
