.text-box {
    padding: 8px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    border-radius: 4px;
    font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
    border: 2px solid black;
    box-shadow: 3px 3px 0px black;
    font-size: clamp(13px, 2vw, 15px);
    text-align: center;
    z-index: 200;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, bottom 0.3s ease-in-out, box-shadow 0.2s ease;
}

#instruction-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

#social-links {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

#coffee-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

#video-link {
    position: absolute;
    top: 10px;
    left: 10px;
}

#logo {
    font-size: 2em;
}

#corner-links {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 200;
}

#wardrobe-link {
    position: static;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#wardrobe-link:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px black;
}

#github-link {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#github-link:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0px black;
}