* {

background-color: rgb(217, 235, 250);;


}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
}

.container{
    width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top{
    display: flex;
    align-items: center;
    font-weight: 900;
    margin: 10px;
}

.top p{
    font-size: 16px;
    width: 160px;
    text-align: center;
}

hr{
    width: 100px;
    border-radius: 5px;
    margin: 0 15px;
}

h1{
    font-size: 60px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
}

h3{
    margin-bottom: 10px;
}

.social-icons{
    margin: 20px;
    display: flex;
    justify-content: space-evenly;
}

a{
    color: black;
}

.social-icons a:hover {
    color: rgb(66, 143, 120);
    
    }

i{
    font-size: 35px;
    margin: 10px;
}

.progress-wrapper{
    width: 100%;
    background-color: #c9cccac7;
    display: flex;
    margin-bottom: 20px;
    border-radius: 10px;
    
 }

.progress{
    width: 0%;
    background-color: rgb(66, 143, 120);
    border-radius: 10px;
    height: 15px;
    display: flex;
    justify-content: flex-end;
 }

.progress span {
    position: relative ;
    font-weight: 800;
    top: 15px;
    left: 20px;
 }








@media screen and (max-width:640px) {
    .container{
        width: 90%;
    }
    h1{
        font-size: 50px;
    }
    i{
        font-size: 25px;
    }
}

@media screen and (max-width:400px) {
    h1{
        font-size: 30px;
    }
}