* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
    background-color: #181A1B;
    color: white;
}
main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
#container{
    padding: 2rem;
    border: 1px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}
input{
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 10px;
    padding:10px;
}
button{
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: gray;
    cursor: pointer;
    font-weight: 600;
}
button:hover{
    background-color: white;
}
li{
    list-style-type: none;
}