* {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
  padding: 0;
  margin: 0;

  height: 100vh;
  width: 100vw;

  display: flex;
  flex-direction: column;

  overflow: hidden;
}

#content {
  flex-grow: 1;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#content #logo-mbo {
  width: 150px;
  height: 150px;

  margin-bottom: 1em;
}

#content #description {
  width: 30%;

  margin-bottom: 2em;
}

#content #description h3 {
  text-align: center;
}

#content #description p {
  text-align: center;
}

#content #container-logo {
  width: 30%;

  display: flex;
  flex-direction: row;
  justify-content: space-evenly;

  background-color: lightblue;
  
  padding: 1em;

  border-radius: 10px;
}

#content #container-logo .logo {
  width: 50px;
  height: 50px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#content #container-logo #windows {
  background-image: url(./assets/windows.svg);
}

#content #container-logo #irma {
  background-image: url(./assets/tool.svg);
}

#content #container-logo #apple {
  background-image: url(./assets/apple.svg);
}

#footer {
  padding: 1em;

  text-align: center;
}

#footer .links {
  all: unset;

  color: black;
}

#footer .links + .links {
  margin-left: 1em;
}

#footer .links:hover {
  cursor: pointer;
  text-decoration: underline;
  text-underline-position: under;
}