/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: 'Futhorc-handwritten';
  /* Nutze den absoluten Pfad mit Anführungszeichen */
  src: url('/fonts/Futhorc_handwrittenMono.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: white;
  color: black;
  font-family: 'Futhorc-handwritten';
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 30px;
  background: #e6edf6;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: #3f5873;
}

body {
  -webkit-backdrop-filter: saturate(40%);
  backdrop-filter: saturate(40%);
  background-image: url('/art/bluesplatter.jpg');
  background-size: cover;
  background-attachment:fixed;
  background-repeat: repeat;
  min-height: 100vh
  
}

iframe {
  position: relative;
  aspect-ratio: 16 / 9;
  height: 100%;
  width: 100%;
}

b {color:#968794;}
i {color:#a9becb;}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e6edf6;
}

::-webkit-scrollbar-thumb {
  background: #c7d8ec;
  border: 2px solid #e6edf6;
}

::-webkit-scrollbar-thumb:hover {
  background: #d9c4c7;
}

.container {
  max-width: 1200px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  background: #f4f8fd;
  border: 1px solid #b8cbe0;
  
}

.topbar {
  background: #d4e1f0;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #b8cbe0;
}

.site-name{
  font-size: 24px;
  letter-spacing: 1px;
}

.site-name img{
  font-size: 24px;
  letter-spacing: 1px;
  vertical-align: middle;
}

.links a {
  color: #4a6a8a;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}


.main-nav {
  background: #eef4fb;
  border-bottom: 1px solid #b8cbe0;
  padding: 6px 15px;
  display: flex;
  gap: 16px;
  font-size: 19px;
}

.main-nav a {
  color: #4a6a8a;
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
}

.main {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.sidebar {
  width: 220px;
}

.profile-pic {
  height: 180px;
  background: #c7d8ec url(https://files.catbox.moe/vgkskp.gif)
    center / cover;
  border: 1px solid #b8cbe0;
  margin-bottom: 15px;
}

.box {
  background: #eef4fb;
  border: 1px solid #b8cbe0;
  padding: 10px;
  margin-bottom: 15px;
}

.side-title {
  background: #fff;
  padding: 2px 0 2px 10px;
  margin-bottom: 5px;
  font-size: 20px;
  border-left: 5px solid #d9c4c7;
}

.content {
  flex: 1;
}

.content-title {
  background: #d4e1f0;
  padding: 2px 0 2px 10px;
  margin-bottom: 5px;
  font-size: 20px;
  border-left: 5px solid #d9c4c7;
  
  
}

.content-title-futhorc {
  font-family: 'Futhorc-handwritten', monospace;
}

.footer {
  background: #eef4fb;
  border-top: 1px solid #b8cbe0;
  padding: 8px;
  text-align: center;
  font-size: 16px;
  color: #5f7fa3;
}

.headline {
  font-size: 40px;
  margin-top: 0px;
  margin-bottom: 0px;

}

@media (max-width: 768px) {
  .main {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  
  .main-nav {
    flex-direction: column;
    gap: 8px; 
    align-items: center;    

  }

  
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  
  .links {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
}