@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;600&display=swap');

body{
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Lexend', 'sans-serif';
    background-color: #000000;
}

.main-image{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.25);
}   

/* .main-image:hover{box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.5); } */

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.logo {
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.15));
    transition: filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.logo:hover img {
    filter: brightness(0) invert(1) 
            /* drop-shadow(0 0 2px white) */
            drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

#typewriter-text {
    color: white;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
}

/* Customizing the cursor */
.ti-cursor {
    color: #3b82f6; /* Matching your blue highlight color */
}
