body{
    width: 100%;
    height: 100%;
    overflow: hidden
    }
/* Both splits*/
.split {
    height: 100%;
    position: fixed;
    top: 0;
    overflow: hidden
}

/* Right side of the screen*/
.right {
    right: 0;
    width: 40%;
    background-image: url("./hand-drawn/texture.png");
}

/* Left side of the screen*/
.left {
    left: 0;
    width: 60%;
    background-image: url("./hand-drawn/background.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left bottom; 
    background-size: 60% 120%;
}

/* ALL STATIC IMAGES */
/*Ryan*/
.ryan {
    position: absolute;
    left: 38%;
    top: 65%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 58%;
    z-index: 2;
}

/* tie */
.tie {
    position:absolute;
    display: none;
    left: 38.8%;
    top: 71%;
    transform: translate(-50%, -50%);
    width: 4%;
    height: 15%;
    z-index: 3;
}

/* Table */
.table {
    z-index: 1;
    position: absolute;
    height: 60%;
    width: 50%;
    right: -5%;
    bottom: 15%;
}

.nalia{
    position: absolute;
    height: 13%;
    width: 18%;
    right: 28%;
    top: 80%;
    z-index: 1;
}


/* ALL  BUTTONS */
.tooltip-container{
    position: absolute; 
    display: inline-block;
    z-index: 3;
}

.tooltip-container::after {
    position: absolute; 
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
    /* transform: translate(-50%, -50%); */
}

/* show on hover */
.tooltip-container:hover::after {
    opacity: 1;
    z-index: 4;
    
    }

/* each button's placement */
    /* CV & Pothos*/
    .tooltip-cv{
        top: 0; 
        left: 30%;
        width: 30%;
        height: 30%;
    }

    .tooltip-cv::after {
        content: url('./hand-drawn/professional.png');
        top: 80%;
        left: 55%;
        transform: translateX(-50%) scale(.33);
    }

    /*Hobbies & Monstera*/
    .tooltip-hobbies{
        width: 25%;
        height: 60%;
        bottom: 15%;
    }
    .tooltip-hobbies::after{
        content: url('./hand-drawn/hobbies.png');
        top: 90%;
        left: 55%;
        transform: translateX(-50%) scale(.33);
    }

    /* Blog & Money Tree */
    .tooltip-blog{
        bottom: 50.5%;
        left: 61%;
        width: 10%;
        height: 15%;
        z-index: 2;
    }

    .tooltip-blog::after{
        content: url('./hand-drawn/blog.png');
        top: 55%;
        left: 50%;
        transform: translateX(-50%) scale(.33);
    }

    /* Publications & fern*/
    .tooltip-research{
        bottom:50.5%;
        left: 70%;
        width: 15%;
        height: 10%;
        z-index: 2;
    }

    .tooltip-research::after{
        content: url('./hand-drawn/publications.png');
        top: 30%;
        left: 55%;
        transform: translateX(-50%) scale(.33);
    }

    /*Home and Snakeplant*/
    .tooltip-about{
        bottom: 51%; 
        left: 85%;
        width: 12%;
        height: 30%;
    }
    .tooltip-about::after{
        content: url('./hand-drawn/about.png');
        top: 78%;
        left: 10%;
        transform: translateX(-50%) scale(.33);
    }

    /* Guestbook */
    /* .tooltip-guestbook{
        height: 10%;
        width: 15%;
        bottom: 15%;
        right: 5%;
        z-index: 3;
    } */
    
    /* .tooltip-guestbook::after{
        content: url('./hand-drawn/guestbook.png');
        top: 35%;
        left: 50%;
        transform: translateX(-50%) scale(.33);
    } */
    
/* affects all buttons */
.plant{
    position:absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    /* filter: drop-shadow(0 0 5px #eec170); */
}

.plant:hover{
    transform: scale(1.03);
    -webkit-filter: drop-shadow(5px 5px 0 #013709);
    filter:drop-shadow(5px 5px 0 #013709);
    cursor: pointer;
    transition: 0.2s;
}
