* {
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    /* outline: 1px solid red; */
    transition: .2s all;
}

body {
    background-color: #000;
    background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
    background-repeat: no-repeat;
    background-size:contain;
    background-position: fixed;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.tittle{
    text-align:center
}
h1 {
    display: inline;
    cursor: default;
    margin-bottom: 100px;
    font-size: 50px;
    font-weight: lighter;
    transition: all 1s;
    flex-grow: 1;
    text-align: center;
}


h1 span {
    color: #5FFBF1;
    font-size: 200px;
    margin: 0;
    text-align: left;
    padding: 0;
    transition: all 1s;
}



.list-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 700px;
    gap: 5px;
    background-color: rgba(29, 29, 29, 0.3);
    border-radius: 10px;
    box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.57);
    -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.57);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.57);
    margin-bottom: 300px;
}

.focus{
    box-shadow: 0px 0px 11px 0px rgba(63, 63, 63, 0.57);
    -webkit-box-shadow: 0px 0px 11px 0px rgba(95, 95, 95, 0.57);
    -moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.57);
}

.item {
    display: grid;
    grid-template-columns: minmax(100px, 400px) 1fr;
    margin: 0;
    width: 100%;
}

.li-item {
    list-style: circle;
    outline: none;
    font-size: 15px;
    margin-left: 1px;
}

.options {
    display: flex;
    width: 100%;
    text-align: right;
}

.disable, .delete {
    border: none;
    background: transparent;
    color: #fff;
}

.disable {
    color: rgb(177, 175, 175);
}



.enabled {
    border: none;
    background: transparent;
    color: #fff;
}

.delete {
    color: #fff
}

h2, ul, .list-new_item, .list {
    width: 70%;
    color: #fff;
}

h2 {
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
    padding: 0;
    cursor: default;
}

.list {
    overflow-y: auto;
    max-height: 200px;
}

.list::-webkit-scrollbar {
    width: 3px;
    
}

.list::-webkit-scrollbar-thumb {
    background: #B3AFB3;
    border-radius: 40px;
}

.list::-webkit-scrollbar-thumb:hover {
    background: #B3AFB3;
}

.list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .1);
    border-radius: 9px;
    box-shadow: inset 0px 0px 0px 0px #F0F0F0;
}

ul {
    height: auto;
    min-height: min-content;
    font-weight: 100px;
    font-size: 15px;
    padding: 0;
    margin: 0;
    list-style: circle inside;
}

.list-new_item {
    margin-top: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
}

.text-item {
    border: none;
    margin: 0;
    width: 65%;
    background-color: transparent;
    color: #fff;
    flex-grow: 1;
    outline: none;
    transition: all 1s, ease-in-out;
}

.text-item:focus {
    border-bottom: #fff solid 1.5px;
}

.text-item::placeholder {
    color: rgb(207, 203, 203);
}

.btn-new-item, .btn-delete-item {
    border: none;
    background: transparent;
    color: #fff;
    margin: 0;
    font-size: 18px;
    margin-right: 0;
    cursor: pointer;
    transition: all 1s, ease-in-out;
    text-align: justify;
}

.btn-new-item:active, .btn-delete-item :active {
    font-size: 16px;
    color: rgb(207, 203, 203);
}

@media screen  and (max-width: 600px){
    html{
        margin: 0;
        padding: 0;
    }
    body{
        height: 200000px;
        overflow:none;
        margin: 0 10px;
    }
    h1{
        display: block;
        font-size: 2em;
        margin: auto;
        margin-bottom: 0;
        margin-top: -120px;
        height: auto;
    }
    .list-container{
        width: auto;
        height: 78vh; 
    }

    .list,h2,.list-new_item,ul{
        margin: 30px 0;
        width: 90%;
    }
    .list-new_item{
        margin-top: auto;
    }
}