/* CSS for the high scores page */ 

body {
    /* used https://cssgradient.io for the gradient background colour syntax (accessed 3rd april 2023) */ 
    background: radial-gradient(circle, rgba(151,67,157,1) 0%, rgba(72,50,93,1) 55%, rgba(29,12,36,1) 100%);
}

h1 {    
    font-size: 40px;
    text-align: center;
    margin-top: 4%;
    margin-bottom: 4%;
    color: #FF82F3;
    text-shadow: 6px 6px 8px black;
}

 #scores-text {
    display: flex;
    background-color: rgb(255, 252, 252); 
    margin: auto;
    width: 25%;
    height: 550px;
    box-shadow: 6px 6px 8px rgb(0, 0, 0);
}

#ghost img {
    scale: 1.3;
    transform: rotate(5deg) translateY(-400px);
}

.scores {
    width: 400%;
    display: flex;
    flex-direction: column;
    justify-items: center;
    font-size: 18px;
    color: black;
    text-align: center;
    list-style-type: none;
}

#cobweb {
    position: absolute;
    transform: rotate(90deg);
    right: 0%;
    bottom: 0%;
}

p {
    position: absolute;
    font-size: 18px;
    color: white;
    text-shadow: 2px 2px 4px black;
    text-align: center;
    right: 3%;
    top: 40%;
    transform: rotate(5deg);
}

#tree {
    position: absolute;
    bottom: -2%;
    left: 5%;
}







