* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    background: cornflowerblue;
    color: white;
    transition: all .1s ease-in-out;
}

button:hover{
    background: deepskyblue;
}

body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: sans-serif;
}

input{
    outline: none;
    border: 1px solid cornflowerblue;
    border-radius: 10px;
    padding: 10px;
    /*margin: 10px;*/
    font-size: 16px;
}

button.large {
    padding: 10px 20px;
    font-size: 20px;
}
