@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@200;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@200;300;400;500;700;900&display=swap');

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track-piece {
    background-color: #393939;
}

::-webkit-scrollbar-thumb {
    background-color: #FFFFFF;
}

html {
    scrollbar-color: #ffffff #393939;
    scrollbar-width: thin;
}

body {
    position: relative;
    margin: 0;
    font-family: "Source Sans Pro";
    color: black;
    background: #ffffff;
    font-weight: 200;
    text-shadow: 0px 0px 5px white;
    width: 100%;
    height: 15872.05px; /*128+14*(682.67+384)+682.67+128*/
}

.plant-card{
    position: absolute;
    font-family: "Space Mono";
    font-size: 24px;
    width: 960px;
}
.plant-card-left{
    left:704px;
    text-align: left;
}
.plant-card-right{
    right:128px;
    text-align: right;
}

/* plant-card spacing guide: 128px (initial) + (384px margin per plant-card) */

#plant-card-one{
    top:128px;
}

#plant-card-two{
    top:1194.67px; /*128+1*(682.67+384)*/
}

#plant-card-three{
    top:2261.34px; /*128+2*(682.67+384)*/
}

#plant-card-four {
    top: 3328px; /*128+3*(682.67+384)*/
}

#plant-card-five {
    top: 4383.67px; /*128+4*(682.67+384)*/
}
#plant-card-six {
    top: 5461.35px; /*128+5*(682.67+384)*/
}
#plant-card-seven {
    top: 6528px; /*128+6*(682.67+384)*/
}
#plant-card-eight {
    top: 7594.7px; /*128+7*(682.67+384)*/
}
#plant-card-nine {
    top: 8661.36px; /*128+8*(682.67+384)*/
}
#plant-card-ten {
    top: 9728px; /*128+9*(682.67+384)*/
}
#plant-card-eleven {
    top: 10794.7px; /*128+10*(682.67+384)*/
}
#plant-card-twelve {
    top: 11861.37px; /*128+11*(682.67+384)*/
}
#plant-card-thirteen {
    top: 12928px; /*128+12*(682.67+384)*/
}
#plant-card-fourteen {
    top: 13994.7px; /*128+13*(682.67+384)*/
}
#plant-card-fifteen {
    top: 15061.4px; /*128+14*(682.67+384)*/
}


.plant-card-image{
    position: absolute;
    top:0px;
    right:1024px;
    width: 512px;
}

.plant-card-title{
    font-size: 48px;
    font-family: "Rubik";
    font-weight: 700;
}

#home-link {
    position: absolute;
    top: 40px;
    right: 40px;
}

#home-link-a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: 400;
}

#home-icon {
    width: 32px;
    height: 32px;
}

@keyframes loadIn {
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes loadOut {
    from{
        opacity: 1;
        transform: translateY(0px);
    }
    to{
        
        opacity: 0;
        transform: translateY(-10px);
    }
}