@keyframes right {
    from {
        left: 0; /* Starting position */
    }
    to {
        left: 200px; /* Ending position */
    }
}

html {
    /*min-height: 100vh; /* 100% of the Viewport Height */
    /*margin: 0;  Removes default browser margins that cause scrollbars */
    cursor: url(WiredCursor.png) 50 50,auto !important;
}

body{
    background-image: url("Stone.png");
}

.container{
    align-content: center;
}
.center{
    background-image: url("paper.jpg");
    #background-color: beige;
    color: black;
    text-align: center;
}

.unselectable {
    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */

}
.slider {
    -webkit-appearance: none;
    width: 80%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slide-container{
    align-content: center;
    align-items: center;
}

.folder:hover{
    content: url("FolderOpen.png");
}
.folder{
    content: url("FolderClosed.png");
}

button{
    border: none;
    background: none;
}

.gif:hover{
    opacity: 0.5;
    transform: scale(110%);
    transition: .2s;
}
.gif{
    opacity: 1;
    transform: scale(100%);
    transition: .2s;
}


p:hover{
    opacity: 0;
    transition: 1s;
}

p{
    opacity: 1;
    transition: 1s;
}

.label{
    font-size: large;
    font-weight: bold;
    font-family: "Source Code Pro", "Source Code Pro", monospace;
}

.label:hover{
    font-weight: lighter;
    opacity: 1;
}

.buttons {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: lightgrey;
}

.login{
    content: url("login.gif");
    width: 250px;
}