@font-face {
    font-family: 'Comic Sans MS';
    src: url('/fonts/ComicSansMS.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Comic Sans MS';
    src: url('/fonts/ComicSansMS-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Comic Sans MS';
    src: url('/fonts/ComicSansMS-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Comic Sans MS';
    src: url('/fonts/ComicSansMS-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}



:root {
    --sidebar-width: 200px
}

.sidebar {
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #ffffff;
  border-right: 3px dotted rgba(0, 0, 0, 50%);
  position: fixed;
  height: 100%;
  overflow: auto;
  width: var(--sidebar-width);
  line-height: 30px;
}

.sidebar a {
    text-decoration: none;
}

@media screen and (max-width: 1080px) {
  .sidebar {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    position: relative;
    border-right: none;
    line-height: 20px;
    gap: 10px;
    border-bottom: 3px dotted rgba(0, 0, 0, 50%);;
  }

  .sidebar a {
    flex-shrink: 0;
  }
}

.everythingelse {
    margin-left: var(--sidebar-width);
}

@media screen and (max-width: 1080px) {
.everythingelse {
    margin-left: 0px
}
}

@media screen and (max-width: 1080px) and (pointer: coarse) {
    html {
        zoom: 1.5;
    }
}


img {
    width: 600px;
    max-width: 100%;
}

html {
    text-align: center;
    font-family: 'Comic Sans MS';
    font-style: normal;
    font-weight: 400;
}

p {
    max-width: 720px;
    margin: auto;
}

.banner {
    border: 2px solid black;
    border-radius: 25px;
    transition: ease-out 0.2s;
}

.banner:hover {
    border: 5px solid black;
}

