*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: robot, arial, serif;
}
.container{
    background-image: linear-gradient(rgb(255,255,255,0.5), rgb(255,255,255,0.5)), url("/images/salon-banner.jpg");
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
}

img{
    width: 150px;
    margin-top: 2rem;
    justify-content: center;
}
.container h1{
    width: 100%;
    text-align: center;
    margin-top: 25vh;
    text-transform: uppercase;
}
.logo{
    width: 100%;
}
.loading {
    background: rgb(228, 124, 124);
    margin: 5px auto;
    justify-content: flex-start;
    border-radius: 100px;
    align-items: center;
    position: relative;
    padding: 0 5px;
    display: flex;
    height: 40px;
    width: 500px;
  }
  
  .per {
    animation: load 3s infinite forwards;
    box-shadow: 0 10px 40px -10px #fff;
    border-radius: 100px;
    background: yellow;
    height: 30px;
    width: 0;
  }
  
  @keyframes load {
    0% { width: 0; }
    100% { width: 68%; }
  }

  .load{
    display: flex;
    margin: auto auto;
    justify-content: space-between;
    width: 500px;

  }

  @media (max-width: 520px) {
    .loading {
        background: rgb(228, 124, 124);
        margin: 5px auto;
        justify-content: flex-start;
        border-radius: 100px;
        align-items: center;
        position: relative;
        padding: 0 5px;
        display: flex;
        height: 20px;
        width: 200px;
      }
      
      .per {
        animation: load 3s infinite forwards;
        box-shadow: 0 10px 40px -10px #fff;
        border-radius: 100px;
        background: yellow;
        height: 20px;
        width: 0;
      }
      
      @keyframes load {
        0% { width: 0; }
        100% { width: 68%; }
      }
      .load{
        display: flex;
        margin: auto auto;
        justify-content: space-between;
        width: 200px;
    
    
    
    
  }