html {
    height: 100%;
  }

  body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #000000;
    background-color: #ffffff;
  }

  .navigation {
    height: 100%;
    display: flex;
    width: 360px;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
  }

  .tour-floors ul {
    list-style: none;
    width: 80%;
    padding: 10%;
    margin: 0;
  }

  .tour-floors li a {
    text-decoration: none;
    border-bottom: 3px solid #000;
    color: #000;
    display: block;
    font-size: 20px;
    font-weight: 700;
    opacity: 0.2;
    padding: 10px 0;
    transition: opacity 0.2s;
  }

  .tour-floors li a.active,
  .tour-floors li a:hover {
    opacity: 1;
  }

  .tour-assets ul {
    list-style: none;
    width: 80%;
    padding: 10%;
    margin: 0;
  }

  .tour-assets li a {
    text-decoration: none;
    border-bottom: 3px solid #000;
    color: #000;
    display: flex;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 0;
    align-items: center;
    gap: 10px;
  }

  .tour-assets li a svg {
    height: 30px;
  }

  @font-face {
    font-family: SGB23;
    src: url(./fonts/Montserrat-Bold.ttf)
  }
  @font-face {
    font-family: SGB19;
    src: url(./fonts/Montserrat-Medium.ttf)
  }