* {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Josefin Sans', sans-serif;}

h1{
  padding: 15px 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}

.star-rating {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,235,102,0.8575805322128851) 0%,
    rgba(30,143,170,0.7819502801120448) 100%);
}

.stars{
    width: 400px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.star {
    list-style: none;
    font-size: 4rem;
    padding-left: 20px;
    color: white;
}

.star:first-child {
    padding: 0;
}

img {
    -webkit-box-shadow: 1px 6px 22px 1px rgba(77,71,77,1);
    -moz-box-shadow: 1px 6px 22px 1px rgba(77,71,77,1);
    box-shadow: 1px 6px 22px 1px rgba(77,71,77,1);
    margin-top: 40px;
}

.output {
    width: 400px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #00b894;
    font-size: 1.2rem;
    -webkit-box-shadow: 1px 5px 7px 2px rgba(77,71,77,1);
    -moz-box-shadow: 1px 5px 7px 2px rgba(77,71,77,1);
    box-shadow: 1px 5px 7px 2px rgba(77,71,77,1);
}

.next {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #00b894;
    font-size: 1.2rem;
    outline: none;
    margin-top: 10px;
    border: none;
    -webkit-box-shadow: 1px 5px 7px 2px rgba(77,71,77,1);
    -moz-box-shadow: 1px 5px 7px 2px rgba(77,71,77,1);
    box-shadow: 1px 5px 7px 2px rgba(77,71,77,1);
}

.next:hover{
    color: #00b894;
    background: white;
    border: 2px solid #00b894;
    cursor: pointer;
}

.orange {
    color: orange;
}

.yellow {
    color: yellow;
}