/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    background: #161414;
    color: #fff; 
}

h1 {
    font-weight: 400;
    line-height: 1.1;
}

p {
    font-weight: 300;
    line-height: 1.3;
}

header {
    margin: 5vh 15%;
}

img {
    height: 6rem;
}

/* Classes */

.main-tittle {
    font-size: 3.5rem;
    margin-top: 10vh;
}

.main-description {
    font-size: 1.2rem;
    margin-top: 3vh;
}

.container {
    max-width: 600px;
    margin: 5vh 15%;
}

.progress {
    margin-top: 6vh;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.progress-text p {
    font-weight: 400;
}

.progress-bar {
    border-radius: 4px;
    background: #fff;
    width: 100%;
}

.progress-completion {
    border-radius: 4px 0 0 4px;
    background: #f5a302;
    height: 0.9rem;
    width: 33%;
}

.contact-info {
    font-size: 1.2rem;
    margin-top: 16vh;
}

.contact-info i{
    font-size: 1.3rem;
    margin: 3px 1.2rem 0 0;
    
}

.contact-email, .contact-github {
    display: flex;
    margin-top: 0.6rem;
    
}

@media (max-width: 768px) {
    header {
        margin: 5vh 0;
        text-align: center;
    }

    .main-tittle {
        font-size: 1.8rem;
        margin-top: 6vh;
        text-align: center;
    }

    .main-description {
        text-align: center;
        font-size: 1.2rem;
    }

    .contact-info {
        margin-top: 10vh;
    }
  }