@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Annie+Use+Your+Telescope&family=Indie+Flower&family=Noto+Sans+Mono:wght@100..900&display=swap');

body {
    font-family: 'Noto Sans Mono', Consolas, monospace;
    font-display: swap;
    opacity: 0;
    animation: fadeIn 3s forwards;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    gap: 10px;
}

.text-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

a {
    color: blue;
}

.container h1 {
    font-size: 1.5rem;
    margin: 0;
}

.container p {
    text-align: center;
    font-size: 1.2rem;
    margin: 0;
}

.floating-thought {
    position: absolute;
    font-family: 'Indie Flower', cursive;
    font-weight: 400;
    width: var(--width);
    --width: 120px;
    font-size: 1.0rem;
    color: rgba(0, 0, 0, 0.6);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transform: rotate(var(--rotation));
    --rotation: 0deg;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    font-display: swap;
}

.floating-thought span {
    transition: opacity 0.3s ease;
}

.floating-thought:hover {
    color: rgba(0, 0, 0, 0.6);
}

@keyframes fadeOut {
    from {
        opacity: 0.7;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#thoughts-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bottom-right {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    text-align: right;
}

.bottom-center {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
    text-align: center;
}

:root {
    --webring-size: 50px;
}

.smallimage{
    width: var(--webring-size);
}

#defaultw {
    position: absolute;
    clip-path: polygon(10% 10%, 50% 0%, 50% 100%, 10% 90%, 0% 50%);
}

#defaultR {
    position: absolute;
    clip-path: polygon(50% 0%, 90% 10%, 100% 50%, 90% 90%, 50% 100%);
}

.hoverW {
    opacity: 0;
    width: var(--webring-size);
    position: absolute;
    margin: 0 auto;
    pointer-events: none;
}

.hoverR {
    opacity: 0;
    width: var(--webring-size);
    position: absolute;
    margin: 0 auto;
    pointer-events: none;
}

#defaultw:hover~.hoverW {
    opacity: 1;
}

#defaultR:hover~.hoverR {
    opacity: 1;
}

#WR_container_wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: var(--webring-size);
    height: var(--webring-size);
    z-index: 1000;
    padding: 10px;
}
