/* Basis-Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Cambria', serif;
    background: url('images/Harlekin_Portrait\ 1\ pixelig.png') center/cover no-repeat;
    color: blue;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: url('images/herz.png') 16 16, auto;
}

/* Back Button */
.fixed-back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    transform: rotate(-90deg);
}

.fixed-back-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: rotate(-90deg) scale(1.1);
}

/* Main Content */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.email-link {
    font-size: clamp(24px, 8vw, 80px);
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    word-break: break-word;
    transition: opacity 0.3s;
}

.email-link:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    font-family: 'Cambria', serif;
    font-weight: 900;
    font-size: 10px;
    text-align: center;
    padding: 10px;
    background: transparent;
    color: #0e25f5;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Allgemeine Verbesserungen */
body, main, p, div, span {
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .fixed-back-button {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .email-link {
        font-size: clamp(20px, 7vw, 60px);
    }
}

@media (max-width: 480px) {
    .fixed-back-button {
        width: 30px;
        height: 30px;
        font-size: 18px;
        top: 15px;
        left: 15px;
    }
    
    main {
        padding: 40px 20px;
    }
    
    .email-link {
        font-size: clamp(18px, 6vw, 50px);
    }
    
    footer {
        font-size: 8px;
    }
}