body{
 background-color: #8e3535;
 margin: 0;
 height: 100vh;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}

#title {
 position: absolute;
 top: 100px;
 color: white;
 text-align: center;
 margin: 0;
 font-size: 36px;
 font-weight: bold;
 font-style: italic;
}
.flex{
    display: flex;
    flex-direction: column;
    background-color: rgb(240, 215, 103);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
}
#input-field{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
}
#sentiment-feedback-input{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}
input[type="submit"]{
    padding: 10px 15px;
    background-color: #8e3535;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
input[type="submit"]:hover{
    background-color: #6e2727;
}
label{
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

#result{
    margin-top: 20px;
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    color: rgb(241, 247, 247);
}
