@font-face {
    font-family: 'Les Enfants du Paradis';
    src: url('../fonts/les_enfants.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.60)
        ),
        url("../assets/images/schiefer5.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header {
    width: 100%;
    min-height: 96px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;
}

header > a {
    font-family: 'Les Enfants du Paradis', cursive;
    color: #c5a15a;
    font-size: 5rem;
    text-decoration: none;

    transform: translateY(15px) translateX(-50px);
}

header > a::after {
    content: "";

    position: absolute;
    left: -10%;
    top: 70%;
    
    width: 700px;
    height: 100%;

    opacity: 0;

    background-image: url("../assets/images/hover-pencil-logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

header > a:hover::after {
    opacity: 1;
    transform: translateY(-20px)
}

header nav a {
    position: relative;
    display: inline-block;
    z-index: 1;
}

/* Glasscheibe */
header nav a::before {
    content: "";

    position: absolute;
    inset: -8px -14px;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(176, 141, 87, 0.10);
    border-radius: 8px;

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);

    opacity: 0;
    transform: scale(0.96);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    z-index: -1;
    pointer-events: none;
}

header nav a:hover::before {
    opacity: 1;
    transform: scale(1);
}

header nav a::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 100%;

    width: 190px;
    height: 50px;

    background-image: url("../assets/images/hover-pencil.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    transform: translateX(-50%);

    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

header nav a:hover::after {
    opacity: 1;

    transform:
        translateX(-50%)
        translateY(-10px);
}


nav > ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;

    list-style: none;
}

nav a {
    color: #c5a15a;
    text-decoration: none;
    font-size: 1.1rem;
}

nav li {
    position: relative;
}

nav li ul {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;

    min-width: 180px;
    padding-top: 1rem;

    list-style: none;
}

nav li:hover > ul {
    display: block;
}

nav li ul li {
    padding: 0.7rem 0;
}

footer {
    padding: 0 7%;
    font-size: 1.1rem;

    text-align: right;
}

.main {
    width: 100%;
}

.home {
    width: 100%;
    min-height: calc(100vh - 180px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7%;
}

.home__content {
    width: 55%;
    font-size: 2rem;
    font-family: 'Conte Script', cursive;
    color: #b08d57;

    transform: translateX(-55px);
}

.home__content p {
    margin-bottom: 1rem;
}

.home__content span {
    /* später Gold */
}

.home__visual {
    width: 45%;

    background: #202020;
}

.hero__pencil-scene {
    position: absolute;

    right: 2%;
    top: 50%;

    width: 58%;

    transform: translateY(-45%);

    pointer-events: none;
}

.hero__pencil {
    display: block;
    width: 100%;
    height: auto;

    -webkit-mask-image:
    linear-gradient(to right,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 8%,
        #000 22%,
        #000 88%,
        rgba(0, 0, 0, 0.75) 94%,
        transparent 100%
    ),
    linear-gradient(to bottom,
        transparent 0%,
        #000 18%,
        #000 82%,
        transparent 100%
    );

    mask-image:
    linear-gradient(to right,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 8%,
        #000 22%,
        #000 88%,
        rgba(0, 0, 0, 0.75) 94%,
        transparent 100%
    ),
    linear-gradient(to bottom,
        transparent 0%,
        #000 18%,
        #000 82%,
        transparent 100%
    );

    mask-composite: intersect;
}

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@300;400;500&display=swap');
nav {
    font-family: 'Barlow Semi Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
}

footer nav {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

footer p {
    margin-top: 0.7rem;
    font-size: 0.9rem;
    color: rgba(200, 155, 60, 0.6);
}

.solutions {
    min-height: calc(100vh - 180px);

    display: flex;
    flex-direction: column;

    padding: 3% 0;
}

.solutions__intro {
    text-align: center;

    font-family: 'Conte Script', cursive;
    color: #b08d57;

    margin-top: 12vh;
}

.solutions__intro h1 {
    font-size: 2.4rem;
    font-weight: normal;
    margin-bottom: 2rem;
}

.solutions__intro p {
    font-size: 1.7rem;
    line-height: 1.5;
    margin: 0.3rem 0;
}

.solutions__links {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 65%;
    margin: 8vh auto 0;
}

.solution-link {
    position: relative;
    display: inline-block;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.06em;

    padding: 0.45rem 0.9rem;
    border-radius: 8px;

    color: #b08d57;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.solution-link:hover {
    background: rgba(255, 255, 255, 0.045);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.solution-link::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 100%;

    width: 190px;
    height: 50px;

    background-image: url("../assets/images/hover-pencil.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    opacity: 0;

    transform: translate(-50%, -2px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    pointer-events: none;
}

.solution-link:hover::after {
    opacity: 1;
    transform: translate(-50%, 3px);
}

.solution-link--software::after {
    /* Spitze zeigt bereits nach links */
}

.solution-link--tools::after {
    transform: translate(-50%, -2px) scaleX(-1);
}

.solution-link--tools:hover::after {
    transform: translate(-50%, 3px) scaleX(-1);
}

.solutions__intro p:last-child {
    margin-top: 1rem;
}

.catalog {
    min-height: calc(100vh - 180px);
    padding: 0 7%;
}

.catalog__intro {
    text-align: center;
    margin-top: 12vh;

    font-family: 'Conte Script', cursive;
    color: #b08d57;
}

.catalog__intro p {
    font-size: 1.35rem;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 5rem;

    width: 85%;
    margin: 6vh auto 0;
}

.catalog-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 260px;
    padding: 1.5rem;

    color: #b08d57;
    text-decoration: none;

    border-radius: 10px;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.catalog-card:hover {
    background-color: rgba(255, 255, 255, 0.035);

    box-shadow:
        inset 0 0 0 1px rgba(176, 141, 87, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.18);
}

.catalog-card__preview {
    width: 100%;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}
.catalog-card__preview {
    width: 100%;
    height: 250px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.catalog-card--securevault .catalog-card__preview img {
    object-fit: contain;
}

.catalog-card__preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}

.catalog-card h2 {
    margin: 1.2rem 0 0.5rem;

    font-family: 'Conte Script', cursive;
    font-size: 1.8rem;
    font-weight: normal;
}

.catalog-card__description {
    max-width: 520px;
    line-height: 1.5;
}

.catalog-card p {
    margin: 0;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.25rem;
    line-height: 1.5;
}

.catalog-card__pencil {
    position: absolute;

    left: 50%;
    bottom: -0.8rem;

    width: 70px;
    height: auto;

    opacity: 0;

    transform: translateX(-50%) translateY(6px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    pointer-events: none;
}

.catalog-card:hover .catalog-card__pencil {
    opacity: 1;

    transform: translateX(-50%) translateY(0);
}

.number-converter {
    width: min(1100px, 86%);
    margin: 0 auto;
    padding-top: 10vh;
    color: #b08d57;
}

.number-converter__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.number-converter__intro h1 {
    margin: 0 0 0.5rem;
    font-family: 'Conte Script', cursive;
    font-size: 2rem;
}

.number-converter__intro p {
    margin: 0;
    font-family: 'Conte Script', cursive;
    font-size: 1.25rem;
}

.number-converter__workspace {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.number-converter__input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.number-converter__results {
    display: flex;
    flex-direction: column;

    min-width: 320px;
}

.number-converter__results h2 {
    margin-bottom: 1.2rem;
}

.number-converter__results p {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;

    margin-bottom: 0.8rem;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.2rem;
}

.number-converter__results strong {
    font-weight: 500;
}

.number-converter__input h2 {
    margin-bottom: 1.5rem;
}

.number-converter__input label {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.15rem;
     margin-right: 0.4rem;
}


.number-converter__explanation {
    margin-top: 3rem;
}

.number-converter__explanation p {
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
}

.number-converter__input input,
.number-converter__input select {
    width: 100%;
    max-width: 320px;
    height: 42px;

    margin-bottom: 1.3rem;
    padding: 0 0.8rem;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.1rem;

    color: #b08d57;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(176, 141, 87, 0.25);
    border-radius: 8px;

    outline: none;

    backdrop-filter: blur(4px);
}

.number-converter__input input:focus,
.number-converter__input select:focus {
    border-color: rgba(176, 141, 87, 0.7);

    box-shadow:
        0 0 0 2px rgba(176, 141, 87, 0.08);

    background: rgba(255, 255, 255, 0.055);
}

.binary-calculation {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.binary-calculation__row {
    display: grid;
    grid-template-columns: repeat(var(--binary-columns), 60px);

    margin-bottom: 0.5rem;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.15rem;
}

.binary-calculation__row span,
.binary-calculation__row strong {
    text-align: center;
}

.binary-calculation__row strong {
    font-size: 1.3rem;
    font-weight: 600;
}

.binary-calculation__result {
    margin-top: 1rem;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.2rem;
}

.hex-calculation {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.hex-calculation__row,
.hex-calculation__arrow {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80px;
    justify-content: start;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.2rem;
}

.hex-calculation__row span,
.hex-calculation__row strong,
.hex-calculation__arrow span {
    text-align: center;
}

.hex-calculation__arrow {
    margin: 0.3rem 0;
}

.hex-calculation__row strong {
    font-size: 1.3rem;
}

.hex-place-calculation {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.hex-place-calculation__row {
    display: grid;
    grid-template-columns:
        repeat(var(--hex-columns), 80px);

    justify-content: start;

    margin-bottom: 0.5rem;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.15rem;
}

.hex-place-calculation__row span,
.hex-place-calculation__row strong {
    text-align: center;
}

.hex-place-calculation__row strong {
    font-size: 1.3rem;
    font-weight: 600;
}

#calculate-button {
    margin-top: 0.5rem;

    padding: 0.65rem 1.4rem;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;

    color: #b08d57;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(176, 141, 87, 0.12);
    border-radius: 8px;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
}

#calculate-button:hover {
    background: rgba(255, 255, 255, 0.05);

    box-shadow:
        inset 0 0 0 1px rgba(176, 141, 87, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.18);

    transform: translateY(-1px);
}

#calculate-button:active {
    transform: translateY(0);
}

.securevault {
    width: min(1500px, 86%);
    min-height: calc(100vh - 180px);

    margin: 0 auto;
    padding: 7vh 0 4vh;

    color: #b08d57;
}


.securevault__intro {
    text-align: center;
    margin-bottom: 4vh;

    font-family: 'Conte Script', cursive;
}

.securevault__intro h1 {
    font-size: 2.4rem;
    font-weight: normal;
    margin-bottom: 0.4rem;
}

.securevault__intro p {
    font-size: 1.35rem;
}


/* Hauptbereich */

.securevault__mainframe {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;

    gap: 5rem;
}

.securevault__mainscreen img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}

.securevault__maininfo h2 {
    margin-bottom: 1.2rem;

    font-family: 'Conte Script', cursive;
    font-size: 2rem;
    font-weight: normal;
}

.securevault__maininfo p {
    max-width: 600px;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
}


/* Technische Daten */

.securevault__specs {
    width: 70%;

    margin: 4vh auto;

    border-collapse: collapse;

    text-align: center;

    font-family: 'Barlow Semi Condensed', sans-serif;
}

.securevault__specs th {
    padding-bottom: 0.6rem;

    font-size: 1.15rem;
    font-weight: 500;
}

.securevault__specs td {
    font-size: 1.1rem;
}


/* Zweiter Bereich */

.securevault__secondframe {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;

    gap: 5rem;
}

.securevault__secondscreen img {
    display: block;

    width: 60%;
    height: auto;

    margin: 0 auto;

    object-fit: contain;
}

.securevault__secondinfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 1.3rem;
}

.securevault__secondinfo a {
    position: relative;

    display: inline-block;

    padding: 0.6rem 1rem;

    border-radius: 8px;

    color: #b08d57;

    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.04em;

    text-decoration: none;
}

.securevault__secondinfo a::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 100%;

    width: 190px;
    height: 50px;

    background-image: url("../assets/images/hover-pencil.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0;
    pointer-events: none;

    transform: translateX(-50%) translateY(-8px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.securevault__secondinfo a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.unsere-reise {
    min-height: calc(100vh - 180px);
    padding: 5vh 8% 4vh;
    font-family: 'Conte Script', cursive;
    color: #b08d57;
}

.unsere-reise h1 {
    font-size: 2rem;
    font-family: 'Conte Script', cursive;
    color: #b08d57;
}

.unsere-reise h2 {
    font-size: 1.5rem;
    font-family: 'Conte Script', cursive;
    color: #b08d57;
}

.unsere-reise p {
    font-size: 1.1rem;
    font-family: 'Conte Script', cursive;
    line-height: 1.8;
}

.unsere-reise__intro {
    max-width: 850px;
    margin-bottom: 3vh;
}

.unsere-reise__main {
    max-width: 900px;
}

.unsere-reise__abschluss {
    max-width: 700px;
    margin-top: 3vh;
}

.unsere-reise__steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.unsere-reise__steps img {
    width: 70px;
    height: auto;
    flex-shrink: 0;
}

footer nav a {
   position: relative;
    padding: 0.45rem 0.8rem;
    border-radius: 8px;

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;
}

footer nav a:hover {
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 4px 14px rgba(0, 0, 0, 0.18);
}

footer nav a::before {
    content: "";
    position: absolute;

    width: 190px;
    height: 50px;

    left: 50%;
    bottom: calc(100% - 16px);

    background: url("../assets/images/hover-pencil.png") center / contain no-repeat;

    opacity: 0;
    transform: translateX(-50%) rotate(180deg);

    transition: opacity 0.2s ease;
}

footer nav a:hover::before {
    opacity: 1;
}

.unsere-reise {
    position: relative;
}

.unsere-reise__rakete {
    position: absolute;

    width: 420px;
    height: auto;

    right: 8%;
    bottom: 5%;

    pointer-events: none;
    user-select: none;
}

.datenschutz {
    padding: 8vh 11% 6vh;
    max-width: 1200px;
    font-family: 'Conte Script', cursive;
    color: #b08d57;
}

.datenschutz h1 {
    margin-bottom: 3rem;
}

.datenschutz__block {
    margin-bottom: 2.5rem;
}

.datenschutz__block h2 {
    margin-bottom: 0.8rem;
}

.datenschutz__block p {
    max-width: 900px;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.datenschutz a {
    color: inherit;
    text-decoration: none;
}

.datenschutz a:hover {
    text-decoration: underline;
}

.impressum {
    padding: 8vh 11% 6vh;
    min-height: calc(100vh - 185px);
    max-width: 1200px;
    font-family: 'Conte Script', cursive;
    color: #b08d57;
    
}

.impressum h1 {
    margin-bottom: 3rem;
}

.impressum__block {
    margin-bottom: 2.5rem;
}

.impressum__block h2 {
    margin-bottom: 0.8rem;
}

.impressum a {
    color: inherit;
    text-decoration: none;
}

.kontakt {
    padding: 8vh 11% 6vh;
    max-width: 1200px;
    font-family: 'Conte Script', cursive;
    color: #b08d57;
}

.kontakt__intro {
    max-width: 850px;
    margin-bottom: 3vh;
}

.kontakt__intro h1 {
    margin-bottom: 0.8rem;
}

.kontakt__intro h2 {
    margin-bottom: 0.4rem;
}

.kontakt__zeile {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.kontakt__zeile > div {
    flex: 1;
}

.kontakt__formular label {
    display: block;
    margin-bottom: 0.4rem;
}

.kontakt__formular input,
.kontakt__formular textarea {
    width: 100%;
    box-sizing: border-box;

    padding: 0.8rem 1rem;

    font: inherit;
    color: #b08d57;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(176, 141, 87, 0.25);
    border-radius: 8px;

    outline: none;

    backdrop-filter: blur(4px);
}

.kontakt__formular textarea {
    min-height: 190px;
    resize: vertical;
}

.kontakt__formular input:focus,
.kontakt__formular textarea:focus {
    border-color: rgba(176, 141, 87, 0.7);

    box-shadow:
        0 0 0 2px rgba(176, 141, 87, 0.08);

    background: rgba(255, 255, 255, 0.055);
}

.kontakt__formular button {
    position: relative;

    margin-top: 2rem;
    padding: 0.65rem 1.2rem;

    font: inherit;
    color: #b08d57;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(176, 141, 87, 0.25);
    border-radius: 8px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.kontakt__formular button::before {
    content: "";
    position: absolute;

    width: 190px;
    height: 50px;

    left: 50%;
    top: -35px;

    background:
        url("../assets/images/hover-pencil.png")
        center / contain no-repeat;

    opacity: 0;
    transform: translateX(-50%);

    pointer-events: none;

    transition: opacity 0.2s ease;
}

.kontakt__formular button:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(176, 141, 87, 0.45);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.04),
        0 4px 14px rgba(0, 0, 0, 0.18);
}

.kontakt__formular button:hover::before {
    opacity: 1;
}

.projekte {
    padding: 8vh 11% 6vh;
    max-width: 1600px;
    font-family: 'Conte Script', cursive;
    color: #b08d57;
}

.projekte__intro {
    max-width: 850px;
    margin-bottom: 3vh;
}

.projekte__bleistift {
    display: block;

    width: 90px;
    height: auto;

    margin: 18px auto;

    transform: rotate(-90deg);
}

.projekte__feld {
    position: relative;

    width: 100%;
    min-height: 480px;
}

.projekte__zentrum {
    position: absolute;

    top: 120px;
    left: 50%;

    width: 520px;

    transform: translateX(-50%);

    text-align: center;
}

.projekte__projekt {
    position: absolute;

    font-size: 1.15rem;
}

.projekte__projekt--zahlen {
    color: inherit;
    text-decoration: none;

    top: 180px;
    left: 6%;

    padding: 8px 14px;
    border-radius: 8px;

    transition:
        background-color 0.25s ease,
        box-shadow 0.25s ease,
        backdrop-filter 0.25s ease;
}

.projekte__projekt--zahlen:hover {
    background: rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.10),
        0 4px 14px rgba(0, 0, 0, 0.18);
}

.projekte__projekt--website {
    top: 0;
    left: 50%;
    right: auto;

    transform: translateX(-50%);
}

.projekte__verbindung {
    position: absolute;
    width: 90px;
    height: auto;

    pointer-events: none;
    user-select: none;
}

.projekte__verbindung--oben {
    top: 45px;
    left: 50%;

    transform:
        translateX(-50%)
        rotate(90deg);
}

.projekte__verbindung--links {
    top: 175px;
    left: 23%;

    transform: rotate(0deg);
}

html {
    font-size: 18px;
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
        align-items: flex-start;

        padding: 1.2rem 6%;
        gap: 1rem;
    }

    header > a {
        font-size: 3rem;

        transform: none;
    }

    nav > ul {
        flex-wrap: wrap;
        gap: 1rem;
    }

    nav a {
        font-size: 1rem;
    }

    .home {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        padding: 3rem 6%;
    }

    .home__content {
        width: 100%;

        font-size: 1.35rem;

        transform: none;
    }

    .hero__pencil-scene {
        position: relative;

        width: 100%;

        right: auto;
        top: auto;

        margin-top: 2rem;

        transform: none;
    }
}