.float-center.item-image {
  text-align: center;
}

/* Import font from Google - Go to fonts.google.com, select a font and look for the import command */
@import url('https://fonts.google.com/specimen/Roboto+Serif?query=Roboto+');
/* Use the imported font on the page: On Google you can also find the CSS instruction for using the font. If you put this in the body element then the font will be used on the whole website. */
body {
    font-family: 'Roboto ', sans-serif;
  
footer div.mod-footer {
  display: flex;
  flex: 1 1 0%;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-decoration: none; /* Убираем подчёркивание */
}
@media (min-width: 768px) {
  footer div.mod-footer {
    flex-direction: row;
  }
}
  
