* {
    margin: 0px;
    padding: 0px;
}

body {
    height: 100%;
    width: 100%;
    background-color: black; 
    color: wheat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;

}


.todo-content {
    height: 400px;
    width: 400px;
    border: 10px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    
}

.todolist{
    background-color: black;
    color: white;
    height: auto;
    width: 25vw;
    margin: 10px;
    padding: 10px;
    border-radius: 20px;
}

button{
    height: 50px;
    width: 100px;
    font-size: 20px;
    background-color: cornflowerblue;
    border: 0px;
    border-radius: 25px;
    margin-top: 10px;
}

input{
    height: 50px;
    width: 300px;
    font-size: 40px;
}





/* grid */
* {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
}

.input {
    background-color: black;
    height: 100vh;
    width: 50vw;
    grid-area: "input";
    display: flex;
    justify-content: center;
    align-items: center;
}

.list{
    text-align: center;
    position: absolute;
    top: 0;
    background-color: white;
    width: 500px;
    height: 50px;
    border: 2px solid black;
    border-radius: 0px  0px 10px 10px;
    z-index: 0;
}

.output {
    background-color: white;
    color: black;
    height: 100vh;
    width: 50vw;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    grid-area: "output";

}

body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: 'input output';
}


.todo-content{
    grid-area: "output";
}

.user-todo-content{
    grid-area: "input";

}