/* Reset default margins/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    /* Let the body fill the entire screen behind the safe areas. */
    width: 100%;
    height: 100%;
    font-family: sans-serif;
    background: url("src/bg.png") no-repeat center center / cover;
}


/* Icons container */
.icons {
    position: absolute;
    display: flex;
    /* Overrides from @media: center horizontally at top */
    top: 2%;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    gap: 12px;
}

.icons img {
    /* Originally 90px, now 60px from @media */
    width: 60px;
    height: 60px;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275);
    cursor: pointer;
    opacity: 50%;
}

.icons img:hover {
    transform: rotate(360deg) scale(1.3);
}

/* Dancing letters ("LOL") */
.dancing-letters {
    display: flex;
    align-items: center;
    /* From @media: remove left padding, add vertical margins */
    padding-left: 0;
    margin: 10px 0;
}

.single-dancing-letter {
    display: inline-block;
    transition: transform 0.02s ease;
    /* Original margin was 0 -4px; removing it or adjusting is optional */
}

.single-dancing-letter img {
    display: block;
    /* Originally 90x90, now 50x50 from @media */
    width: 50px;
    height: 50px;
    object-fit: contain;
    /* From @media: margin 0 2px */
    margin: 0 2px;
}

/* Labels */
.label-text {
    display: block;
    font-family: Monaco, monospace;
    /* Originally 40px -> now 22px from @media */
    font-size: 22px;
    color: white;
    /* Originally margin-left: 10px, margin-bottom: 10px -> now margin: 0 */
    margin: 0;
}

.label-description {
    display: block;
    font-family: Monaco, monospace;
    /* Originally 25px -> now 17px from @media */
    font-size: 17px;
    color: whitesmoke;
    /* Originally margin-top: 20px, margin-left: 10px, margin-bottom: 10px -> now margin: 0 */
    margin: 0;
}

/* Glassmorphic container */
.glassmorphed-container {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    border: 1px rgba(255, 255, 255, 0.75) solid;
    backdrop-filter: blur(36px);
    width: fit-content;
    padding: 10px;
    position: absolute;
    bottom: 2%;
    max-width: 600px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    margin-right: 5%;
    align-items: center;
    text-align: center;
}

