* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Index", sans-serif;
    font-weight: 900;
    color: white;
    line-height: 1.2;

}

body {
    background-color: black;
    overflow: hidden;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 16px;
    /* Baseline grid setup */
    --baseline-unit: 1rem;
    font-size: 1rem;
}
.Name { 
    position: fixed;
    font-weight: 900;
    font-size: 10vw;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-decoration: none;
    margin: 0;
    left: 8px;
    padding: 0;
}   

.Name:hover {
    color: red;
    opacity: 1;
    cursor: nw-resize;
}

#Nachname{
  position: fixed;
  margin-top: calc(10vw);
  left: 8px; /* matches your grid gap from body */
  z-index: 999;
}

a.Name {
    text-decoration: none;
    color: white;
}

.Name:hover {
    opacity: 100%;
    color: red;
}

.Info{
    grid-column: 2/5;
    grid-row: 3/6;
    margin: 16px;
    overflow-y: scroll;
    overflow-x: auto;
    scrollbar-width: none;
}


.text-info__row {
    display: flex;
    align-items: start;
    margin: 16px;
}

.text-info__title {
  width: 130px;
  flex-shrink: 0;
  margin-right: 20px;
}

.text-info__content {
    width: 300px;
    padding-right: 16px;
}

.text-info__year {
    width: auto;
    text-align: right;
    flex: 1;
}


@media (max-width: 700px){
  .Info {
        grid-column: 1 / -1; /* von Spalte 1 bis zur letzten Spalte */
        grid-row: 2 / 6;
        margin: 8px;
    }
}