/* media queries para saber o tamanho do ecrãn */



@media screen and (max-width: 800px) {
    body {
    background-color: red;
    }
}

@media screen and (min-width: 801px) and (max-width: 1199px) {
    body {
    background-color: green;
    }
}

@media screen and (min-width: 1200px) {
    body {
    background-color: blue;
    }
}

.text-caps{
    text-transform: uppercase;
}