:root {
    font-family: "Mona Sans", sans-serif;
    --color-gold: #BE9858
;
}
html * {
    background-color: var(--color-gold);
    color: white;
}

body {
    display: inline-flex;
    padding: var(--space-m);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2xl);
}

main {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    width: 100%;
    height: 100%;
}

.list-items {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;  
}


h1 {
    font-size: var(--step-6);
    line-height: 1;
    padding: var(--space-xs);


}

ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: space-between;
    align-self: stretch;
    flex-wrap: wrap;
    gap: var(--space-l);
}

li {
    display: flex;
    position: relative;
    padding: var(--space-xs) var(--space-s);
    justify-content: left;
    align-items: center;
    margin-bottom: var(--space-m);

}


a {
    text-decoration: none; /* Standard-Unterstreichung entfernen */
    font-size: var(--step-3);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    position: relative;
    color: white; /* Standardfarbe Schwarz */
    transition: color 0.3s ease-in-out; /* Sanfter Übergang */
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem; /* Abstand der Linie vom Text */
    width: 0;
    height: 2px; /* Dicke der Linie */
    background-color: #fff; /* Weiße Linie */
    transition: width 0.3s ease-in-out; /* Animationsgeschwindigkeit */
}

a:hover {
    color: #fff; /* Textfarbe Weiss beim Hover */
}

a:hover::after {
    width: 100%; /* Die Linie über den gesamten Text ausdehnen */
}