*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Josefin Sans',sans-serif;
}
h1{
    padding: 15px 0;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.star-rating{
    width: 100vw;
    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;
    /* flex-direction: row; */
}
.star{
    list-style: none;
    font-size: 3.5rem;
    padding-left: 20px;
    /* background-color: red; */
    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);
}
.output{
    width: 400px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #00b894;
    color: white;
    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;
    border: none;
}
.next:hover{
    color: #00b894;
    background: white;
    border: 2px solid #00b894;
    cursor: pointer;
}
.orange{
    color: orange;
}
.yellow{
    color: yellow;
}

@media (max-width : 415px) {
    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body{
        width: 100vw;
        height: 100vh;

    }
    h1{
        width: 250px;
        padding: 0;
        margin-top: 50px;
    }
    .star-rating{
        font-weight: 500;
    }
    .stars{
        padding: 0;
        width: 250px;
        /* height: 100px; */
        display: flex;
        justify-content: center;
        align-items: center;
        /* flex-direction: row; */
    }
    .star{
        list-style: none;
        font-size: 2.5rem;
        padding-left: 2px;
        /* background-color: red; */
        color: white;
    }
    .star:first-child{
        padding: 0;
    }
    img{
        width: 255px;
        height: 200px;
        -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);
    }
    .output{
        width: 250px;
    }
    .orange{
        color: orange;
    }
    .yellow{
        color: yellow;
    }
}