* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: lightslategray;
}

h1{
    display: flex;
    justify-content: center;
}

label{
    font-size: 20px;
}

#app-container{
    margin: 50px;
    display: flex;
    flex-direction: column;
}

input, a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 30px;
    font-size: 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

#input-remove{
    background-color: rgb(40, 52, 157);
    height: 50px;
}