body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d9c7a6;
    font-family: 'Comfortaa', cursive;
}

.typing-wrapper {
    font-size: 3rem;
    color: white;
}

.text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 4px solid white;
}

.github-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.github-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .typing-wrapper {
        font-size: 1.8rem;
        text-align: center;
        padding: 0 20px;
    }

    .github-icon {
        top: 12px;
        right: 12px;
        font-size: 1.6rem;
    }
}

@media (max-width: 400px) {
    .typing-wrapper {
        font-size: 1.5rem;
    }

    .github-icon {
        font-size: 1.4rem;
    }
}
