* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .background {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
  }
  
  .background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://cdn.beggin.fr/assets/images/ui/loadingscreen/background.png");
    background-size: cover;
    z-index: -1;
  }
  
  .content {
    display: inline-block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 2vh;
    color: #fff;
  }
  
  .font-bold {
    font-weight: 800;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  .font-black {
    font-weight: 900;
  }
  
  .main-title {
    font-size: 70px;
    margin-top: 3vh;
    margin-bottom: 2vh;
  }
  