* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    color: none;
    color: black;
}

.background {
    background-image: url(./assets/img/background.jpg);
    background-position: center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.background > h1 {
    font-size: 60px;
    padding-bottom: 2rem;
}

.chargeBar-wrapper {
    width: 30%;
    height: 15px;
    background-color: gray;
    margin-top:1rem;
}

.chargeBar-wrapper > div {
    width: 70%;
    height: 100%;
    background-color: cadetblue;
}

.porcentual-wrapper {
    width: 30%;
    display: flex;
    justify-content: space-between;
}

.btn {
    background-color: cadetblue;
    padding: 5px;
    margin-top: 1rem;
}

.btn:hover {
    background-color: gray;
    transition: all 1s;
    cursor: pointer;
}

@media (max-width: 700px) {
    
.chargeBar-wrapper {
    width: 50%;

}

.porcentual-wrapper {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.chargeBar-wrapper > div {
    width: 70%;
    height: 100%;
    background-color: cadetblue;
}
}
