body{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: hsl(0, 0%, 5%);
}

.round-bg{
    margin-top: 40px;
    width: 500px;
    max-width: 90vw;
    background-color: hsl(0, 0%, 70%);
    text-align: center;
    border-radius: 25px;
    padding-bottom: 30px;
}

h2{
    margin-bottom: 10px;
}

input{
    border-style: solid;
    border-color: black;
    border-radius: 5px;
}

button{
    border-style: solid;
    border-radius: 5px;
}

button:hover{
    background-color: darkgrey;
    cursor: pointer;
}

button:active{
    background-color: white;
}

.item-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    font-size: 25px;
    text-align: center;
    padding: 0;
}

li{
    background-color: hsl(0, 0%, 65%);
    border-radius: 15px;
    width: 95%;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow-wrap: break-word;
    overflow: hidden;
}

li:hover{
    cursor: pointer;
}