body {
    height: 100vh; /* 100% der Viewport-Höhe */
    width: 100vw;
    background-color: black;
    margin: 0;
    color: #ba9595;
}

a {
    color: #ba9595;
    text-decoration: none;
}

/* Statt verschachtelter Regeln: */
#title {
    text-align: center;
    margin: 40vh 0 50vh 0;
}

#title p {
    color: #ba9595;
    font-size: 2rem;
}

h1, h2 {
    text-align: center;
    font-size: 10rem;
    text-transform: uppercase;
    line-height: 1;
    background-image: url('./Blue-2.jpg');
    background-size: contain;
    background-clip: text;
    color: transparent;
    background-position: center;
    background-repeat: repeat;
    transition: 150ms ease;
    animation: identifier ease;
}

h2 {
    font-size: 6rem;
}

h1:hover, h2:hover {
    transform: scale(1.1);
    cursor: pointer;
}

p {
    text-align: center;
    font-size: 2rem;
    margin: 0 10vw;
}

#contact a {
    text-align: center;
    margin: 0 1vw;
}

#contacts i{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem; 
    font-size: 5rem;
}

.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s;
}

.show {
    opacity: 1;
    transform: scale(1);
}

@keyframes identifier {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
