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

.background {
    position: fixed;
    background: url('../img/tools.jpg') #08093cb3;
    background-blend-mode: darken;
    filter: blur(10px);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.container {
    width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top p {
    font-size: 16px;
    width: 160px;
    text-align: center;
}

.top {
    display: flex;
    align-items: center;
    font-weight: 900;
    margin: 10px;
}

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: white;
}

i {
    font-size: 35px;
    margin: 10px;
}

.progress-wrapper {
    width: 100%;
    background-color: #2f2b2bc7;
    display: flex;
    margin-bottom: 20px;
    border-radius: 10px;
}

.progress {
    width: 0%;
    background-color: white;
    border-radius: 5px;
    height: 10px;
    display: flex;
    justify-content: flex-end;
}

.progress span {
    color: white;
    position: relative;
    font-weight: 800;
    top: 13px;
    left: 25px;
}

@media screen and (max-width:640px) {

    .container {
        width: 90%;
    }

    h1 {
        font-size: 50px;
    }

    i {
        font-size: 25px;
    }
}

@media screen and (max-width:640px) {
    
    h1 {
        font-size: 30px;
    }
}