html, body {
    height: 100%;
}

/* CSS only for examples not required for centering */
.container {
    height: 100%;

}

.container p
{
    color: #ffffff;
    font-weight: bold;
    font-size: 40px;
    padding-top: 10%;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 20px;

}

h2 {
    color: #000000;
	font-size: 28px;
	padding-bottom: 25px;
}

.container-fluid {
    
    background-image: url("../img/fundo.jpg");
	background-size: cover;
    background-repeat: no-repeat;
    /* Set a specific height */
    min-height: calc(100vh);
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    background-color: #ffffff;
}



progress[value] {
  --color: black; /* the progress color */
  --background: lightgrey; /* the background color */

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 200px;
  margin: 0 5px;
  border-radius: 10em;
  background: var(--background);
}
progress[value]::-webkit-progress-bar {
  border-radius: 10em;
  background: var(--background);
}
progress[value]::-webkit-progress-value {
  border-radius: 10em;
  background: var(--color);
}
progress[value]::-moz-progress-bar {
  border-radius: 10em;
  background: var(--color);
}


/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {


    .container p
    {
        letter-spacing: normal;

    }



}
