html, body{

    background-repeat: round;
    background-image: url("images/vesicles.png");
    height: 100%;
    padding: 0;
    margin: 0;
    cursor: url("images/indiamouse.png"), auto;
}

.main {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: url("images/indiamouse.png"), auto;

}
.independent {
    background-color: red;
    height: 200px;
    width: 200px;
    border: 2px solid blue;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    top: 0;
    right: 0;
}
.independent:hover {
    color: red;
    background-color: black;
}
.golgiexplanation {
    border: 5px ridge navy;
    left: 5px;
    top: 5px;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    background-color: #F4F4E8;
}
.golgiexplanationtext {
    border-top: 2px solid grey;
    font-size: small;

}
.window {
    height: 50%;
    width: 30%;
    background-color: rgba(0, 0, 255, 0.7);
    color: white;
    border-radius: 7px;
    border: 5px ridge navy;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: 5s glow infinite;

}
h1 {

}
.scrollbar {
    background-color: black;
    position: relative;
    float: left;
    display: flow;
    width: 1000%;

}
.scroller {
    background-color: black;
    position: relative;
    float: right;
    animation: 30s moveLeft infinite linear;
    transition: 2s ease-in-out;
    width: 4%;
    text-align: center;




}
.scroller:hover {
    color: red;
}
p {

}
.music {
    display: flex;
    flex-direction: column;
    color: blue;
    justify-items: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
}
.cellribbon {
    background: url("images/cell.png");
    background-repeat: round;
    width: 100%;
    height: 100px;
}
@keyframes glow {
    0% {
        background-color: blue;
    }
    33% {
        background-color: #AA3553;
    }
    66% {
        background-color: #B71DDE;
    }
    100% {
        background-color: blue;
    }
}

@keyframes moveLeft {
    0% {
        left: -100%;
    }
    100% {
        left: 150px;

    }

}