* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    /* font-family: 'Roboto Black', sans-serif; */
    font-family: sans-serif;
    outline: none;
}

html,
body {
    overflow: hidden;
    /* background-color: #fff; */
    background-color: var(--bg-primary);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.parallax-container {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    padding: 10px;
    width: fit-content;
    overflow: hidden;
    /* background: rgba(255, 255, 255, 0.62); */
    gap: 12px;
    background-color: var(--bg-primary);
}

.glass {
    border-radius: 16px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    /* border: 1px solid rgba(185, 154, 212, 0.24); */
    border: 1px solid var(--border-color);
}

.letter {
    position: relative;
    font-size: 8rem;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: #000; */
    color: var(--text-primary);
}

.glass-letter {
    /* color: transparent; */
    /* color: rgba(0,0,0,1); */
    color: var(--text-primary);
    /* background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8)); */
    background: linear-gradient(45deg, var(--bg-secondary), var(--bg-tertiary), var(--bg-secondary));
    -webkit-background-clip: text;
    background-clip: text;
}

.links-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border-radius: 20px;
     background-color: rgba(255, 255, 255, 0.62); 
    /*background-color: var(--bg-secondary);*/
    transition: all 0.3s ease;
}

.link:hover {
     background-color: rgba(255, 255, 255, 0.82); 
    /*background-color: var(--bg-primary);*/
     box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5); 
    cursor: pointer !important;
    /* transform: scale(1.02); */
    /*color: var(--text-primary);*/
}

.img-icon {
    width: 50px;
    height: 50px;
}

.title {
    font-size: 1rem;
    font-weight: bold;
    /*color: var(--text-primary);*/
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select {
    cursor: pointer;
    -webkit-touch-callout: default; /* iOS Safari */
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* mobile */
@media (max-width: 768px) {
    body {
    }

    .parallax-container {
        flex-direction: column;
        padding: 20px;
        width: 70% !important;
        gap: 0;
    }

    .links-container {
        width: 90%;
        /* overflow-x: auto; */
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px;
        background: none;
    }

    .title {
        display: none;
    }

    .letter {
        font-size: 4rem;
    }
}

@media only screen and (min-aspect-ratio: 1/1) {
    .parallax-container {
        flex-direction: row;
        padding: 20px;
        width: 70%;
        gap: 0;
    }
}


.theme-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100; /* Ensure it stays on top */
    /* Add more styles to customize the position and appearance */
}