*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin: 20px 0px;
}

a {
    text-decoration: none;
    color: #333;
}

h3 {
    font-size: 2rem;
    margin: 20px 0px;
}

.loader {
   position: relative;
   width : 800px;
}

.loader .black-bar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: black;
    border-radius: 10px;
  
}

.loader .red-bar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 10%;
    height: 8px;
    background-color: red;
    border-radius: 10px;
   
}