@import url('https://fonts.googleapis.com/css2?family=Sansita+Swashed:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Sansita Swashed', cursive;
    background-image: url('./img/operating-system-linux-computer-opensuse-wallpaper-preview.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding-top: 60px;
    overflow-x: hidden;
}

.container {
    width: 500px;
    height: 100vh;
    padding: 0;
    margin: 0;
    text-align: center;
    padding-top: 20px;
    border-width:6px 4px 6px 6px;
    border-style:double;
    border-color:green;
    box-shadow:2px 2px 4px 2px green;
}

.todo-title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    color: greenyellow;

}

.todo-form {
    margin-bottom: 16px;
}

.todo-input {
    width: 80%;
    padding: 7px 15px;
    outline: none;
    border: 2px dashed green;
    color: rgb(42, 150, 42);
    font-size: 17px;
    transition: all 0.4s ease;
}

.todo-input:focus {
    border: 2px dashed green;
    color: green;
}

::placeholder {
    color: green;
}

.todo-btn {
    width: 15%;
    padding: 7px 15px;
    border: 2px dashed #fff;
    background-color: green;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.4s ease;
}

.todo-btn:hover {
    background-color: green;
    transform: scale(1.1);
}

.todo-list {
    list-style-type: none;
    padding: 0 10px;
}

.list-item {
    padding: 0 12px;
    border-bottom: 2px solid green;
    color: green;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}
