@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    text-align: center;
}

.name {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
}

.name:hover {
    opacity: 1;
}

.social-link {
    display: inline-block;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: scale(1);
}

.social-link:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(147, 51, 234, 0.8));
}

.x-icon {
    /* color white */
    color: #fff !important;
    display: block;
    width: 480x;
    height: 40px;
    filter: brightness(0) invert(1);
}

.copyright {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .name {
        font-size: 2rem;
    }
    
    .copyright {
        right: 50%;
        transform: translateX(50%);
        text-align: center;
    }
}
