@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400&display=swap');
* {
    font-family: 'Roboto Mono', monospace;
}

html {
    background-color: #6846b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-container {
    background-color: white;
    border-radius: 10px;
    width: 80vw;
    height:60vh;
    padding: 20px;
    box-shadow: 1px 5px 10px #000;
}

.list-container h1 { 
    width: 100%; 
    margin-bottom: 2rem;
    font-size: 30px;
}

.list-container hr {
    width: 100%;
    height: 2px;
    background-color: black;
}


.list-container ul li {
    list-style: none;
}