*{
    margin: 0;padding: 0;
    font-family: 'Times New Roman', Times, serif;
    box-sizing: border-box;
    color: #fff;
}
.hero{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg,#010758,#490d61);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}
.hero h1{
    font-size: 45px;
    font-weight: 500;
    margin-top: -50px;
    margin-bottom: 50px;
}
.hero h1 span{
    color: #ff2963;
}
textarea{
    width: 600px;
    height: 250px;
    background: #403d84;
    color: #fff;
    font-size: 15px;
    bottom: 0;
    outline: 0;
    padding: 20px;
    border-radius: 10px;
    resize: none;
    margin-bottom: 30px;
}
textarea::placeholder{
    font-size: 16px;
    color: #ddd;
}
.row{
    width: 600px;
    display: flex;
    align-items: center;
    gap: 20px;
}
button{
    background: #ff2963;
    color: #fff;
    font-size: 16px;
    padding: 10px 30px;
    border-radius: 35px;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}
button img{
    width: 16px;
    margin-right: 10px;
}
select{
    flex:1;
    color: #fff;
    background: #403d84;
    height: 50px;
    padding: 0 20px;
    outline: 0;
    border: 0;
    border-radius: 35px;
    appearance: none;
    background-image: url(./images/dropdown.png);
    background-size: 15px;
    background-repeat: no-repeat;
    background-position-x:calc(100% - 20px) ;
    background-position-y: calc(100% - 20px);
}

.speed-control {
    width: 600px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speed-control label {
    font-size: 18px;
    margin-bottom: 10px;
}

#speed-slider {
    width: 100%;
    height: 8px;
    background: #403d84;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

#speed-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #ff2963;
    border-radius: 50%;
    cursor: pointer;
}

#speed-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #ff2963;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

#speed-value {
    color: #ff2963;
    font-weight: bold;
}
