body {
    background-color: #f2f2f2;
    font-family: 'Nunito Sans', sans-serif;
    background-image: url('../img/background.jpg');
    background-position: top right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #090909;
}

.container {
    margin: auto;
    width: 90%;
    color: #fafafa;
}

article {
    margin-top: 50px;
}

.s1 .bio {
    padding-top: 20px;
    margin-bottom: 20%;
}

h1 {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 0px;
    font-weight: 900;
    letter-spacing: -10px;
    margin-bottom: 0px;
    padding: 0px;
    opacity: 0%;
}

.s1 article {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 4vw;
    font-size: 2.7vw;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

.logo {
    width: 50%;
    margin: auto;
}

.logo img {
    width: 100%;
}

.logo img {
    margin: auto;
}

h2 {
    margin-left: auto;
    margin-right: auto;
    font-family: 'Nunito Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
}

.quicks img {
    width: 5%;
    margin-top: 7%;
    margin-left: 5%;
    margin-right: 5%;
    margin-bottom: 7%;}

section article img {
    width: 5%;
    margin-top: 7%;
    margin-left: 27%;
    margin-right: 0%;
    margin-bottom: 7%;
}

article button {
    position: relative;
    display: inline-flex; /* Flexbox verwenden, um Bild und Text nebeneinander anzuordnen */
    align-items: center; /* Vertikale Zentrierung */
    margin: 1%;
    font-size: 150%;
    text-transform: uppercase;
    font-weight: 400;
    color: grey;
    width: 90%;
    height: 8vw;
    letter-spacing: 3px;
    border: none; /* Kein Rahmen im inaktiven Zustand */
    transition: color 0.5s, font-weight 0.5s, letter-spacing 0.5s, background-color 0.5s;
    outline: none;
    background-color: #b2b2b2;
    cursor: pointer;
}

.button_inhalt {
    margin: auto;
}

.button_text {
    margin-left: 7%;
}

article button::before, article button::after {
    content: '';
    position: absolute;
    border: 5px solid #aa1313; /* Verwendet die gewünschte Farbe */
    transition: all 0.5s;
    box-sizing: border-box;
    opacity: 0; /* Unsichtbar im inaktiven Zustand */
}

article button::before {
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-right: none;
    border-bottom: none;
}

article button::after {
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: none;
    border-top: none;
}

article button:hover {
    letter-spacing: 0px;
    font-weight: 900;
    color: #aa1313;
    background-color: #1e1e1e;
}

article button:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1; /* Sichtbar beim Hover */
}

article button:hover::after {
    width: 100%;
    height: 100%;
    opacity: 1; /* Sichtbar beim Hover */
}

section .rights {
    margin-top: 70px;
}

.copy {
    margin-top: 30px;
    margin-bottom: 80px;
    font-size: 70%;
}

a {
    color: #aa1313; 
    text-decoration: none;
}
a:active {
    color: #aa1313; 
    text-decoration: none;
}
a:hover {
    color: #ff0000;  
    text-decoration: none;
}