@import '~@fortawesome/fontawesome-free/css/all.min.css';
a{
  color: inherit;
  text-decoration: none;
}
.anton {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 37.5px;
}
.oxanium {
      font-family: "Oxanium", sans-serif;
      font-optical-sizing: auto;
      font-weight: 200;
      font-style: normal;
}
.fz-15{
  font-size: 15px;
}
.fz-11{
  font-size: 11px;
}
.fz-7{
  font-size: 7px;
}
.mt-1{
  margin-top: 1rem;
}
.App-header {
  min-height: calc(100vh - 128px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-size: calc(10px + 2vmin);
  color: white;
  text-align: center;
}
.App-header p{
  max-width: 700px;
  margin: auto;
  margin-bottom: 2rem;
}
.text-uppercase{
  text-transform: uppercase;
}
.text-underline{
  text-decoration: underline;
}
.mr-2{
  margin-right: 2rem;
}
body {
  margin: 0;
  padding: 0;
  background-image: url('../public/assets/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
}

.top-bar {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.top-bar > div{
  flex: 1;
}
.top-bar .logo{
  text-align: center;
}
.top-bar .right-images{
  text-align: right;
}
.right-images img {
  width: 50px;
  margin-right: 10px;
}
.play-now-button {
  background-color: #E2082F;
  color: #fff;
  font-size: 16px;
  padding: 10px 40px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
.social-icon{
  margin-top: 2rem;
  margin-bottom: 1.2rem;
}
.social-icons i,.social-icon i{
  margin-right: 1.1rem;
}
.App-header h2{
  line-height:38.4px ;
}
.logo img {
  height: 40px;
}
.copy-right{
  display: flex;
  align-items: center;
}
.copy-right img{
  margin-right: 1rem;
}
.right-images{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.right-images .border-right{
  border-right: 1px solid #fff;
  margin-right: 1rem;
}
.bottom-bar {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  background-color: rgba(0, 0, 0, 1);
  padding: 0 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 9px;
}
.only-mobile{
  display: none;
}

@media (max-width: 768px) {
  body {
    background-image: url('../public/assets/background-mobile.jpg');
  }
  .social-icons, .right-images {
    display: none;
  }
  .only-mobile{
    display: block;
  }

  .logo {
    margin: 0 auto; /* Centre le logo */
  }
  .App-header h2{
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
  }
  .App-header p{
    max-width: 75%;
  }
  .bottom-bar{
    display: none;
  }
  .App-header {
    min-height: calc(100vh - 20px);
  }
  .bottom-logo{
    display: flex;
    justify-items: center;
    justify-content: center;
    margin-top: 1rem;
  }
  .bottom-logo > div{
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
  }
  .border-right{
    border-right: 1px solid #ffffff;
  }
}