/* estilo para div */

/*tipo de letra bajado de google fonts*/

@import url('https://fonts.googleapis.com/css2?family=Comforter+Brush&family=Concert+One&family=Corinthia:wght@400;700&family=Dancing+Script:wght@400;500;600;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* fuentes de letra
font-family: 'Comforter Brush', cursive;
font-family: 'Concert One', cursive;
font-family: 'Corinthia', cursive;
font-family: 'Dancing Script', cursive;
font-family: 'Roboto', sans-serif;
font-family: 'Exo 2', sans-serif;
*/

html,body {
    margin: 0;
    padding: 0;
    font-size: 28px;
    background-color: rgb(226, 221, 214);
    font-family: 'Exo 2', sans-serif;
}

header {
    position: fixed;
    z-index: 1;
    top:0;
    width: 100%;
    background-color: antiquewhite;
}

header h1 {
    text-align: center;
}


.content {
    display: flex;
    margin: 50px auto 0 auto;
    width: 80%;
    background-color: blueviolet;
    column-gap: 40px;
    padding: 100px 0;
}


.progress-container {
    width: 8px;
    height: auto;
    background-color: aqua;
}

.progress-bar {
background-color: brown;
width: 8px;
height: 0%;
}

p {
    font-size: 14px;
}

/* #myBar {
    height: 15px;
} */



