body {
    color: white;
    font-family: Ubuntu, sans-serif;
    font-size: 22px;

    background-image: url("background.png");
    background-position: center top;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

input, textarea, button {
    background-color: mediumslateblue;
    color: black;
    border: none;
    font-size: 22px;
    padding: 8px;
    margin: 12px;
    border-radius: 8px;
}

textarea {
    width: 400px;
    height: 100px;
    resize: none;
}

button {
    background-color: mediumorchid;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: orchid;
}

ul {
    padding-left: 0;
}

li {
    list-style-type: none;
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
    fill-opacity: 20%;
    width: fit-content;
    margin: auto;
    border-radius: 8px;
    padding-left: 8px;
    padding-right: 8px;
}
