* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url('/arrow.cur'), auto;
}

body {
    font-family: 'Frutiger', 'Frutiger Linotype', 'Myriad Pro', 'Myriad', 'Segoe UI', sans-serif;
    background: #000;
    min-height: 100vh;
    overflow: hidden;
    cursor: url('/arrow.cur'), auto;
}

#bg-visualizer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.link-overlay {
    position: fixed;
    z-index: 2;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 15%;
}

#link-personal { top: 35%; }
#link-communal { top: 65%; }

.text-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.text-link:hover {
    opacity: 1;
}
