body {
    background-color: black;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    overflow: hidden;
    cursor: url('pointing.png'), pointer;
}
button {
    font-family: "Special Elite", 'Times New Roman';
    background-color: #5d64a8;
    color: white;
}
button:hover {
    color: #5d64a8;
    background-color: white;
}
#screen1 {
    position: relative;
    aspect-ratio: 16/9;
    height: auto;
    cursor: url('default_none.png'),pointer;
}
#bg1 {
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url("menubg.png");
    background-repeat: no-repeat;
    background-size: cover;
    transition: top 2s;
}
#loadingscrn {
    background-color: black;
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: 5;
    display: flex;
    justify-content: center;
    opacity: 1;
    transition: opacity 1s;
    transition-timing-function: ease-in;
}
#loadingscrn1 {
    background-color: black;
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: 5;
    display: none;
    opacity: 0;
    transition: opacity 2s;
    transition-timing-function: ease-out;
}
#clicktostart {
    color: white;
    font-size: 10vw;
    margin: auto;
    display: none;
}
@keyframes fadeout {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

#volume1 {
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    height: 1%;
    width: 60%;
    background: white;
    cursor: url('default_none.png'), pointer;
}
#volume1::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #8891e5;
    appearance: none;
    height : 1100%;
    width: 4%;
}
#volume1::-webkit-slider-thumb:active {
    cursor:url('grab.png'), pointer;
}
#options {
    display: block;
    position: absolute;
    top : 30%;
    left: 25%;
    width: 50%;
    height: 45%;
}
#volbox, #skipbox {
    position: absolute;
    display: flex;
    width: 100%;
    flex-direction: row;
    height: 50%
}
#voltxt, #skiptxt, #skipbutton {
    font-family: "Special Elite", 'Times New Roman';
    font-size: 7.5vh;
    color: #5d64a8;
}
#volbox {
    top: 0%;
    justify-content: center;
    align-items: center;
}
#skipbox {
    bottom: 0%;
    justify-content: space-around;
    align-items: center;
}
#skiptxt {
    margin-bottom: 0;
}
#skipbutton {
    cursor: url('pointing.png'), pointer;
    margin-bottom: 0;
}
#skipbutton:hover {
    color: white;
}
#play {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 2%;
    cursor: url('pointing.png'), pointer;
}

#playbutton {
    display: block;
    height: 23%;
    width: 46%;
}
