:root {

    --color-background-white: #ffffff;
    --color-background-blue: #1b202e;
    --letters-white: #ffffff;
    --letters-blue: #1b202e;
    --color-background-gray: rgb(199, 199, 199);
}

body{
    padding: 0;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    color: var(--letters-blue);
} 

.container{
    background-color: rgba(255, 255, 255, .9);
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 20px;
    border-radius: 20px;
}
.top p{
    font-size: 35px;
    width: 260px;
    text-align: center;
}
.top{
    display: flex;
    align-items: center;
    font-weight: 900;
    margin: 10px;
    padding-top: 150px;
}
hr{
    width: 100px;
    height: 7px;
    background-color:var(--color-background-blue);
    border-radius: 5px;
    margin: 0 15px;

}
h1{
    font-size: 80px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    padding-top: 150px;
}
h3{
    width: 90%;
    margin-top: 30px;
    margin-bottom: 10px;
}




.progress-wrapper{
    width: 100%;
    background-color: var(--color-background-gray);
    display: flex;
    margin-bottom: 20x;
    border-radius: 10px;
}
.progress{
    width: 0%;
    background-color: var(--letters-blue);
    border-radius: 5px;
    height: 10px;
    display: flex;
    justify-content: flex-end;
}
.progress span{
    color: var(--letters-blue);
    position: relative;
    font-weight: 800;
    top: 13px;
    left: 25px;
}




.buttonsre {
    min-width: 700px;
    display: flex;
    justify-content: center;
    margin-top: 15%;
}

.buttonsre a {
    margin: 15px;
    margin-bottom: -100px;
    text-decoration: none;
    font-size: 28px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #314652;
    color: #f1f1f1;
    border-radius: 50%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
    transition: all .4s ease-in-out;
}

.buttonsre a:hover {
    transform: scale(1.2);
}

@media screen and (max-width:1024px){
    .container{
        width: 85%;
    }
}
@media screen and (max-width: 640px){
    .container{
        width: 100%;
    }
    h1{
        font-size: 50px;
        padding-top: 100px;
    }
    .buttonsre a{
        font-size: 15px;
    }
}
@media screen and (max-width: 430px){
    .background{
        background-size: contain;
    }
    .top{
        padding-top: 100px;
    }
    .container{
        width: 90%;
    }
    h1{
        font-size: 50px;
    }
    .buttonsre a {
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
    }
.buttonsre {
    min-width: 70%;
}
}
@media screen and (max-width: 400px){
    h1{
        font-size: 30px;
    }
}
