* {
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  background-color: rgb(231, 231, 231);
  /*background-image: url('https://rollout-digitalworkplace.voss.net/content.jpeg');*/
  background-position: 0 0;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 10px;
}
main {
  background-color: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 4px;
}

footer {
  width: 100%;
  padding: 10px;
  font-size: 10px;
  color: rgb(39, 39, 39);
}

h1, h2, h3, h4 {
  font-weight: 600;
}

h1 { font-size: 32px; }

.sections {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
}

@media screen and (min-width: 1200px) {
  .sections {
    flex-direction: row;
  }
  .section > * {
    width: 400px;
  }
}


.section {
  display: flex;
  flex-direction: column;
  column-gap: 20px;
}

.link {
  display: block;
  width: 100%;
  border: 1px solid rgb(3, 120, 124);
  border-radius: 2px;
  padding: 12px;
  margin-bottom: 10px;
}

a{
  color: inherit;
  text-decoration: none;
}

.highlighted {
  font-weight: 600;
}

.logo {
  display: block;
  height: 60px;
  width: 100%;
  background-image: url('graphic.png');
  background-repeat: no-repeat;
  background-size: contain;
}