body{
    background-color: #333642;
}

#ball{
    width:4vw;
    height:4vw;
    position:absolute;
    z-index:5;
    user-select: none;
    }

#ellipsehoop{
    background-color: transparent;
    position: absolute;
    left: 70%;
    top: 47%;
    height: 5%;
    width: 10%;
    border-radius: 100%;
    border: solid red 5px;
    z-index: 10;
    }
#net{
    position: absolute;
    left: 70.5%;
    top: 50%;
    width: 10%;
    height: 20%;
    z-index: 10;
    background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 25px,
    white 15px,
    white 30px
    );
    clip-path: polygon(20% 100%, 80% 100%, 100% 0, 0 0);
    }
#net::before{
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 25px,
    white 15px,
    white 30px
    );
}

#box {
    font-family: 'Caveat', cursive;
    font-weight: 400;
}

#score,
#attempts {
    width: 100px;
    background-color: white;
    border: solid purple 2px;
    border-radius: 10%;
}

#backboard {
    border-bottom: 100vh solid rgb(8, 20, 189);
	border-left: 14vw solid transparent;
	border-right: 14vw solid transparent;
	height: 0;
	width: 80vw;
    opacity: 0.5;
    display: flex;
    flex-wrap: wrap;
}

.spectator{
    width: 50px;
    height: 50px;
    background-color:rgb(13, 223, 195);
    margin: 10px;
    border-radius: 50%;
    background-image: url("/images/spectator.png");
    background-size:cover;
}
