.slide-container {
    margin: 0 auto;
    width:650px;
}
ul {
    list-style: none outside none;
    padding-left: 0;
    margin-bottom:0;
    min-height: 98vh;
}
li {
    display: block;
    float: left;
    margin-right: 6px;
    cursor:pointer;
}
img {
    max-height:98vh;
    max-width:100%;
    height:auto;
    width:auto;
}



body {
    background: rgb(2,0,36);
    background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(11,83,85,1) 35%, rgba(0,212,255,1) 100%); 
}


.nice-button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2.5em;
  }

.nice-button:hover {
    background-color: #2c6a2f; /* Green */
    color: white;

  }
.prev-btn {
    position:fixed;
    left:0;
    bottom:0;
}

.next-btn {
    position:fixed;
    right:0;
    bottom:0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    body {
    height: 100vh;
    display: grid;
    place-items: center;
    }
    
    #wheelOfFortune {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 90%;
    max-width: 900px;
    }
    
    #wheel {
    display: block;
    width: 100%;
    height: 100%;
    }
    
    #spin {
    font: 1.5em/0 sans-serif;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 60%;
    left: 60%;
    width: 10%;
    height: 10%;
    margin: -15%;
    background: #fff;
    color: #fff;
    box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: 0.8s;
    }
    
    #spin::after {
    content: '';
    position: absolute;
    top: -17px;
    border: 10px solid transparent;
    border-bottom-color: currentColor;
    border-top: none;
    }