html, body {
    padding: 0;
    margin: 0;
    height: 100%;
}

body {
    background-color: #E0FBFC;
    font-family: 'Source Sans Pro', sans-serif;
}

h3 {
    text-align: center;
    margin-top: 50px;
}

h1 {
    text-align: center;
    font-size: 4rem;
}

.container {
    top: calc(50% - 100px);
    position: relative;
    transform: translateY(-50%);
    text-align: center;
}

input {
    padding: 12px 20px;
    border: none;
}

input[type="submit"] {
    background-color: #293241;
    color: white;
    cursor: pointer;
}

#list {
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 50px;
}

#list li {
    background-color: #98C1D9;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 5px;
    width: fit-content;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
}
