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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    background-color: #38404b;
    color: #94ADCF;
}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 25px;
    margin: 25px;
}

form{
    padding: 10px 15px;
    background: #38404B;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input{
    font-weight: 400;
    font-size: 16px;
    padding: 15px 15px;
    border-radius: 16px;
    border: none;
    outline: none;
    background-color: #38404b;
    color: #94ADCF;
    margin-bottom: 25px;
    box-shadow: 1px 1px 2px rgba(66, 75, 88, 0.3), 
               -1px -1px 2px rgba(46, 53, 62, 0.5), 
               inset -3px 3px 6px rgba(46, 53, 62, 0.2), 
               inset 3px -3px 6px rgba(46, 53, 62, 0.2), 
               inset -3px -3px 6px rgba(66, 75, 88, 0.9), 
               inset 3px 3px 8px rgba(46, 53, 62, 0.9);
    border-bottom: 2px solid #94ADCF;
    width: 350px;
}

form input::placeholder{
    color: #94ADCF;
}

.instructions p{
    font-size: 10px;
}

.todos{
    cursor: pointer;

    width: 100%;
}

.todo{
    list-style-type: none;
    box-shadow: -5px 5px 10px rgba(48, 54, 64, 0.2),
                 5px -5px 10px rgba(48, 54, 64, 0.2), 
                -5px -5px 10px rgba(64, 74, 86, 0.9), 
                5px 5px 13px rgba(48, 54, 64, 0.9), 
                inset 1px 1px 2px rgba(64, 74, 86, 0.3),
                inset -1px -1px 2px rgba(48, 54, 64, 0.5);
    border-radius: 16px;
    padding: 15px 20px;
    gap: 15px;
    width: 100%;
    margin-bottom: 15px;
}

.todo:hover {
    border-radius: 16px;
    border: 2px solid #94ADCF;
}

.completed{
    text-decoration: line-through;
    box-shadow: 1px 1px 2px rgba(66, 75, 88, 0.3), 
               -1px -1px 2px rgba(46, 53, 62, 0.5), 
                inset -3px 3px 6px rgba(46, 53, 62, 0.2), 
                inset 3px -3px 6px rgba(46, 53, 62, 0.2), 
                inset -3px -3px 6px rgba(66, 75, 88, 0.9), 
                inset 3px 3px 8px rgba(46, 53, 62, 0.9);
    opacity: 0.5;
}


