<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&amp;family=Open+Sans:ital,wght@0,300..800;1,300..800&amp;display=swap");
@font-face {
  font-family: huyzenFont;
  src: url("Laca Regular.woff");
}

:root {
  --default-heading-font-family: "huyzenFont","Arimo", sans-serif;
  --default-font-family: "Arimo","Open Sans", sans-serif;
  --default-font-size: clamp(14px, 1.05rem, 0.85vw);
  --default-line-height: calc(var(--default-font-size) * 1.2);
  --default-text-color: #333;
  --default-text-hover: #7e7e7e;

  --color-olvoc-blue: #0e22b7;
  --color-olvoc-blue-transparent: rgba(14, 34, 183, 0.671);
  --color-olvoc-blue-forecolor: #fff;
  --color-background: #99b6f2;
  --color-background-forecolor: #041c88;
  --color-medium-background: #114bbf;
  --color-medium-background-forecolor: #fff;
  --color-dark-background: #041c88;
  --color-dark-background-forecolor: #fff;

  --color-background-light: #f5f5f5d8;

  --main-width: 90vw;

  --button-color: var(--color-olvoc-blue);
  --border-radius: 0.5rem;

  --box-shadow-color: #0e23b7;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--default-font-family);
  font-size: var(--default-font-size);
  line-height: var(--default-line-height);
  color: var(--default-text-color);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  height: -webkit-fill-available;
  /* max-width: 1400px;
  margin-left: auto;
  margin-right: auto; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--default-heading-font-family);
  color: var(--color-dark-background);
}

h1 {
  font-size: calc(var(--default-font-size) * 2.3);
  line-height: calc(var(--default-font-size) * 2.3);
  margin: 0.5rem 0 1rem 0;
}

h2 {
  font-size: calc(var(--default-font-size) * 2);
  line-height: calc(var(--default-font-size) * 2);
  margin: 0.5rem 0 0.7rem 0;
}

h3 {
  font-size: calc(var(--default-font-size) * 1.8);
  line-height: calc(var(--default-font-size) * 1.8);
  margin: 0.5rem 0 0.5rem 0;
}

h4 {
  font-size: calc(var(--default-font-size) * 1.6);
  line-height: calc(var(--default-font-size) * 1.6);
  margin: 0.5rem 0 0.5rem 0;
}

h5 {
  font-size: calc(var(--default-font-size) * 1.4);
  line-height: calc(var(--default-font-size) * 1.4);
  margin: 0.5rem 0 0.5rem 0;
}

h6 {
  font-size: calc(var(--default-font-size) * 1.2);
  line-height: calc(var(--default-font-size) * 1.2);
  margin: 0.5rem 0rem 0.5rem 0;
}

p {
  margin-bottom: 0.6rem;
}

a {
  text-decoration: none;

  &amp;:focus {
    color: var(--default-text-hover);
    outline: none;
  }

  &amp;:active {
    color: var(--default-text-hover);
  }

  &amp;:hover {
    color: var(--default-text-hover);

    /* &amp;:before {
      animation: hoverShadowBefore 1s forwards;
    }

    &amp;:after {
      animation: hoverShadowAfter 1s forwards;
    } */
  }
}

a.button,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;

  position: relative;
  color: var(--button-color);
  margin: 0;
  padding: 0.5rem;

  &amp;:before,
  &amp;:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
  }

  &amp;:before {
    top: 0;
    left: 0;
    box-shadow: inset 1px 1px 0 0 var(--box-shadow-color);
  }

  &amp;:after {
    right: 0;
    bottom: 0;
    box-shadow: inset -1px -1px 0 0 var(--box-shadow-color);
  }

  &amp;:focus {
    color: lighten(var(--default-text-hover), 10%);
    outline: none;
  }

  &amp;:active {
    color: var(--default-text-hover);
  }

  &amp;:hover {
    color: var(--color-olvoc-blue);

    &amp;:before {
      animation: hoverShadowBefore 1s forwards;
    }

    &amp;:after {
      animation: hoverShadowAfter 1s forwards;
    }
  }
}

@keyframes hoverShadowBefore {
  0% {
    width: 100%;
    height: 1px;

    top: 0;
    left: 0;
  }

  33% {
    width: 1px;
    height: 100%;

    top: 0;
    left: 0;
  }

  66% {
    width: 1px;
    height: 1px;

    top: calc(100% - 1px);
    left: 0;
  }

  100% {
    width: 100%;
    height: 1px;

    top: calc(100% - 1px);
    left: 0;
  }
}

@keyframes hoverShadowAfter {
  0% {
    width: 100%;
    height: 1px;
  }

  33% {
    width: 1px;
    height: 100%;

    bottom: 0;
    right: 0;
  }

  66% {
    width: 1px;
    height: 1px;

    bottom: calc(100% - 1px);
    right: 0;
  }

  100% {
    width: 100%;
    height: 1px;

    bottom: calc(100% - 1px);
    right: 0;
  }
}

.tooltip {
  position: relative;
}

.tooltip span {
  visibility: hidden;
  width: 10em;
  background-color: var(--color-olvoc-blue);
  color: var(--color-olvoc-blue-forecolor);
  text-align: left;
  border-radius: 6px;
  padding: 0.5rem 0.5rem;
  position: absolute;
  z-index: 999;
  top: -1em;
  left: 100%;
  opacity: 0;
  transition: opacity 1s;
  font-size: 0.7rem;
}

.tooltip span::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 100%;
  margin-top: -0.5rem;
  border-width: 0.5rem;
  border-style: solid;
  border-color: transparent var(--color-olvoc-blue) transparent transparent;
}

.tooltip input {
  display: none;
}

.tooltip input:checked + span {
  visibility: visible;
  opacity: 1;
}

li {
  margin-left: 1.5rem;
}

section {
  padding: 0 0.5rem 1rem 0.5rem;
  width: 100%;
}

.main-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  row-gap: 1rem;
  padding: 0.5rem;
  margin-top: 3rem;
}
</pre></body></html>