.typing-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.quote {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 10px;
}

.cursor {
    font-size: 24px;
    font-weight: 600;
    color: #00ff00;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.intro {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
}

.email {
    font-size: 16px;
    font-weight: 400;
}

.email a {
    color: #00ff00;
    text-decoration: underline;
    text-decoration-color: #00ff00;
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}

.email a:hover {
    color: #ffffff;
    text-decoration-color: #ffffff;
}

.quote-refresh {
    color: #00ff00;
    cursor: pointer;
    font-weight: 400;
    margin-left: 10px;
    padding: 4px;
    border: 1px solid #00ff00;
    border-radius: 3px;
    background-color: rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 24px;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 24px;
}

.quote-refresh:hover {
    background-color: rgba(0, 255, 0, 0.2);
    color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.05);
}
