body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: white;
    color: black;
    font-family: sans-serif;
}

.wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    font-size: 3rem;
    cursor: pointer;
    user-select: none;
    padding: 20px;
}

.char-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    font-family: monospace;
}

.social-icons {
    position: absolute;
    bottom: -60px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: black;
    opacity: 0.6;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Responsive queries */
@media (max-width: 600px) {
    .container {
        gap: 15px;
        font-size: 2.5rem;
    }
    .char-box {
        width: 50px;
    }
    .social-icons {
        bottom: -40px;
    }
}

@media (max-width: 450px) {
    .container {
        gap: 10px;
        font-size: 2rem;
    }
    .char-box {
        width: 40px;
    }
}

@media (max-width: 350px) {
    .container {
        gap: 5px;
        font-size: 1.5rem;
    }
    .char-box {
        width: 30px;
    }
}