/* Z-Indexes:

image: 1 | 4

pointers: -1 | 3
circles : -1 | 2

text: 5
pointer-desc: 2 | 4*/

body,
html {
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    user-select: none;
}

#image {
    position: absolute;
    transition: filter 1s ease;
    pointer-events: none;
}

.blur {
    filter: blur(10px)
}

.text {
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-size: large;
    min-width: 100%;
}

#about {
    z-index: 5;
    position: fixed;
    top: 10px;
    left: 30px;
    cursor: pointer;
    transition: opacity 1s ease;
}

#more {
    z-index: 5;
    position: fixed;
    top: 10px;
    right: 30px;
    cursor: pointer;
    transition: opacity 1s ease;
}

#projects {
    z-index: 5;
    visibility: hidden;
    position: fixed;
    top: 50px;
    right: 40px;
    cursor: pointer;
    transition: opacity 1s ease;
}

#personal {
    z-index: 5;
    visibility: hidden;
    position: fixed;
    top: 90px;
    right: 40px;
    cursor: pointer;
    transition: opacity 1s ease;
}

#everything-else {
    z-index: 5;
    visibility: hidden;
    position: fixed;
    top: 130px;
    right: 40px;
    cursor: pointer;
    transition: opacity 1s ease;
}

#about-desc {
    z-index: 5;
    visibility: hidden;
    position: fixed;
    max-width: 30%;
    top: 50px;
    left: 30px;
    transition: opacity 1s ease;
    cursor: default;
}

#i-am-desc{
    transition: opacity 1s ease;
}

.pointer-desc {
    visibility: hidden;
    position: absolute;
    color: rgba(0, 0, 0, 0.712);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1.742124vh; 
    /* screen height of 765.33 === 13.333px */
    
    max-width: max-content;
    min-width: 10vh;
    width: 20vh;
    height: auto;

    background-color: white;
    text-align: center;
    border-radius: 2.61325vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: top;
    transition: opacity 1s ease;
    cursor: default;
    z-index: 2;
}

.pointer-desc-img {
    position: relative;
    align-self: center;
    padding-bottom: 1.3066vh;
}

.pointer {
    position: absolute;
    cursor: pointer;
    transition: filter 1s ease;
    z-index: -1;
}

.circle {
    position: absolute;
    transition: transform 3s ease, opacity 3s ease;
}

.scale {
    transform: scale(10);
}

.fade-opacity {
    opacity: 0;
}

.half-fade {
    opacity: 0.5;
}

.no-click {
    pointer-events: none;
}