* {
    color: rgb(212, 212, 212);
    box-sizing: border-box;
    font-family: "Special Elite";
}

html {
    height: 100%;
    overflow: auto;
    scrollbar-width: none;
}

body {
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("steins.jpg");
    background-attachment: fixed;
    background-size: cover;
    /* background-repeat: repeat-y; */
    background-blend-mode: multiply;
    min-height: 100%;
    margin: 0%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title {
    margin-top: 5%;
}

.input {
    background-color: rgba(0, 0, 0, 0.9);

    height: 50px;
    width: 400px;
    margin-top: 1%;
    border: 4px solid rgb(118, 118, 118);
    padding: 1%;
}

.textarea {
    background-color: rgba(0, 0, 0, 0.9);

    resize: none;
    height: 100px;
    width: 400px;
    margin-top: 1%;
    border: 4px solid rgb(118, 118, 118);
    padding: 1%;
}

.textarea:focus {
    outline: none;
}

.submit-button {
    background-color: rgba(0, 0, 0, 0.9);

    height: 50px;
    width: 400px;
    border: 4px solid rgb(118, 118, 118);
    margin-top: 1%;
    margin-bottom: 2%;
}

.list-item {
    background-color: rgba(0, 0, 0, 0.9);

    height: auto;
    min-height: 100px;
    hyphens: auto;
    width: 400px;
    /* margin-top: 1%; */
    margin-bottom: 1%;
    border: 4px solid rgb(118, 118, 118);
    padding: 1%;
}

.item-button {
    background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid rgb(118, 118, 118);

    height: auto;
    padding: 0.9%;
    margin-right: 2%;
}

[contenteditable] {
    outline: 0px solid transparent;
}