body {
    margin: 0px;
    padding: 0px;
    background-color: #222;
    color: white;
    font-size: 16px;
    font-family: sans-serif;
}

.app {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    margin: 20px;
}

.app .append {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
    border: 3px solid white;
}

.app .append form {
    text-align: center;
}

.app .current {
    width: 500px;
    border-radius: 20px;
    padding: 20px;
    border: 3px solid white;
}

input {
    margin: 10px;
}

input[type="text"] {
    padding: 5px 10px;
    border-radius: 5px;
    border: 3px solid white;
    color: white;
    background-color: #222;
    font-size: 16px;
    text-align: center;
    transition: transform 0.5s;
}

input[type="submit"] {
    padding: 5px 10px;
    border-radius: 5px;
    background-color: white;
    color: #222;
    border: none;
    transition: transform 0.5s;
}

input:hover {
    transform: scale(1.1);
}

p.name {
    font-weight: 700;
    font-size: 20px;
}

p.content {
    font-weight: 400;
}

.item {
    box-sizing: border-box;
    width: 100%;
    margin: 0px;
    padding: 20px;
    border-bottom: 3px solid white;
}

.item:last-child {
    border-bottom: none;
}
