html {
    font-family: 'Figtree', sans-serif;
    background-color: #24273a; /* https://catppuccin.com/palette/ → Macchiato → Base, inspiriert von https://trafficlunar.net/ */
    color: #cdd6f4;
}

#content {
    max-width: 1000px;
    margin: auto;
    display: flex;
}

#logo {
    max-width: 350px;
}

#logo-div {
    margin: auto;
    max-width: fit-content;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#main {
    width: 750px;
    padding: 1rem;
}

#side {
    width: 250px;
}

#pfp-div {
    max-width: 150px;
    margin: auto;
}

#pfp {
    max-width: 150px;
    margin: auto;
    border-radius: 50%;
    box-shadow: 5px 5px #181926, 5px 10px #181926, 5px 15px #181926, 5px 20px #181926, 5px 25px #181926, 5px 30px #181926, 5px -5px #181926, -5px 5px #181926, -5px 10px #181926, -5px 15px #181926, -5px 20px #181926, -5px 25px #181926, -5px 30px #181926, -5px -5px #181926;
    margin-bottom: 2.25rem;
}

#pfp:hover {
    box-shadow: 5px 5px 1px #181926, 5px -5px 1px #181926, -5px 5px 1px #181926, -5px -5px 1px #181926;
    transform: translate(0px, 25px);
}

#nametag {
    text-align: center;
    background-color: #1e2030;
    max-width: fit-content;
    margin: auto;
    padding: .5rem;
    border-radius: 15px;
    box-shadow: 5px 5px 0px #181926, 5px 10px #181926, 5px 15px #181926, 5px -5px #181926, -5px 5px #181926, -5px 10px #181926, -5px 15px #181926, -5px -5px #181926;
}

#nametag:hover {
    box-shadow: 5px 5px 0px #181926, 5px -5px  1px #181926, -5px 5px 1px #181926, -5px -5px 1px #181926;
    transform: translate(0px, 10px);
}

fieldset {
    border: 5px solid #181926;
    border-radius: 15px;
    margin-bottom: 1rem;
}

legend {
    border: 5px solid #181926;
    border-radius: 15px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

fieldset > p {
    line-height: 10px;
}

#geb-tage {
    font-family: 'MonoRegular', monospace;
    background-color: #1e2030;
    border-radius: 10px;
    padding: .5rem;
    cursor: default
}

.inline {
    display: inline;
    margin: 0rem;
    line-height: 10px;
}

#sozial-box {
    display: flex;
    max-width: fit-content;
    margin: auto;
}

#sozial-box > div {
    border: 5px solid #1e2030;
    border-radius: 7px;
    padding: .5rem;
    margin: .5rem;
}

nav {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

nav > p {
    display: inline;
}

nav > p > a:link {
    color: #cdd6f4;
}

nav > p > a:visited {
    color: #cdd6f4;
}

/* SPLASH-STYLE */

.marquee {
  line-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #1e2030;
  width: 1000px;
  margin: auto;
  max-height: 3rem;
  line-height: normal;
  margin-bottom: 2.5rem;
  margin-top: 2rem;
  border-radius: 1rem;
  box-shadow: 5px 5px 0px #181926, 5px 10px #181926, 5px 15px #181926, 5px -5px #181926, -5px 5px #181926, -5px 10px #181926, -5px 15px #181926, -5px -5px #181926;
}

.marquee:hover {
    box-shadow: 5px 5px 0px #181926, 5px -5px  1px #181926, -5px 5px 1px #181926, -5px -5px 1px #181926;
    transform: translate(0px, 10px);
}

.marquee p {
  padding-left: 100%;
  animation: marquee var(--t) linear infinite;
  font-style: italic;
  font-family: "Pixel", monospace;
  font-weight: 400;
  font-size: 1.5rem;
  margin-top: 12px;
}
@keyframes marquee {
  0%   { transform: translate(0, 0px); }
  100% { transform: translate(var(--x), 0px); }
}

/* MEDIA-QUERIES */

@media screen and (max-width: 1020px) {
    #content {
        max-width: 1000px;
        margin: auto;
        display: block;
    }

    #main {
        margin: auto;
    }

    #side {
        margin: auto;
        margin-top: 1.2rem;
    }

    .marquee {
        max-width: 92vw;
        margin: auto;
        margin-bottom: 1.8rem;
    }

    #logo {
        max-width: 250px;
    }
}

@media screen and (max-width: 790px) {
    
    #pfp {
        max-width: 75px;
        margin: auto;
        border-radius: 50%;
        box-shadow: 5px 5px #181926, 5px 5px #181926, 5px 7px #181926, 5px 10px #181926, 5px 12px #181926, 5px 15px #181926, 5px -5px #181926, -5px 2px #181926, -5px 5px #181926, -5px 7px #181926, -5px 10px #181926, -5px 12px #181926, -5px 15px #181926, -5px -5px #181926;
        margin-bottom: 2.25rem;
    }

    #pfp:hover {
        box-shadow: 2px 2px 1px #181926, 2px -2px 1px #181926, -2px 2px 1px #181926, -2px -2px 1px #181926;
        transform: translate(0px, 12px);
    }

    #side {
        display: flex;
        margin-bottom: -1.8rem;
        margin-top: 1.2rem;
    }

    #nametag {
        margin-top: 1rem;
        margin-left: -0.7rem;
    }

    #main {
        margin-top: -2.5rem;
        max-width: 90vw;
        margin: auto;
    }
    
    fieldset > p {
        line-height: 20px;
        font-size: 14px;
    }

    #geb-tage {
        padding: .25rem;
    }

    #logo {
        max-width: 200px;
    }

    #sozial-box {
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .inline {
        line-height: 24px;
    }

    .marquee {
        max-width: 92vw;
        margin: auto;
        margin-bottom: 1.8rem;
    }
}