@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');

html {
    background-color: rgb(32, 32, 32);
    color: #f0f0f0;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

footer {
    padding-top: 10px;
    padding-bottom: 0px;
    /* background-color: rgba(0, 0, 0, 0.75); */
}

footer .container {
    text-align: center;
    font-size: 18px;
}

@media only screen and (max-width: 768px) {
    footer .container {
        font-size: 32px;
    }
}