body {
  width: 100vw;
  min-height: 100vh;
  padding: 10px 20px;
  margin: 0;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  overflow-x: hidden;
  font-size: 12px;
}

header {
  max-width: 1000px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.content-favicons {
  max-width: 1000px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 15px;

  img {
    height: 25px;
  }

  img:hover {
    z-index: 2;
    transform: scale(1.6);
  }
}

footer {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  box-sizing: border-box;
  gap: 15px;
  margin: 20px 0px;
}

.footerIcon {
  flex-shrink: 0;
  width: 24px;
}
