*{
    margin: 0%;
    padding: 0%;
}
body{
    background-color: #fff;
    overflow: hidden;
    display: grid;
    place-items: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.container{
    margin-top: 2.5%;
    border: 2px solid #000;
    width: 95vh;
    height: 90vh;
    overflow: hidden;
    background: rgba( 255, 255, 255, 0.2 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 5.5px );
    -webkit-backdrop-filter: blur( 5.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    display: flex;
    flex-direction: column;
}
.heading{
    border: 2px solid transparent;
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    font-size: 2rem;
    font-weight: bolder;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.add{
    border: 2px solid transparent;
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: bolder;
    margin-top: 5%;
    cursor: pointer;
}
.plus{
    overflow: hidden;
    border: 2px solid transparent;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color:skyblue;
    box-shadow:5px 5px 5px black;   
    user-select: none; 
}
.plus:active{
    width: 105px;
    height: 105px;
}
.target{
    font-size: 1.5rem;
    margin-top: 5%;
    overflow: hidden;
    width: auto;
    height: 100%;
    border: 2px solid transparent;
    overflow-y: scroll;
    overflow-x: hidden;
}
.dell{
    height: 20px;
    width: 20px;
    margin-top: -5%;
    margin-left: 10%;
}
.buttons{
    margin-top: -4%;
    border: 2px solid transparent;
    width: 70%;
    position: sticky;
    margin-left: 50%;
}
::-webkit-scrollbar{
    display: none;
} 
.inputs{
    height: 100%;
    border: 2px solid transparent;
    border-top: 2px solid skyblue;
}
.new-input{
    width: 70%;
    margin-left: 10%;
    margin-top: 3%;
    font-size: 1.5rem;
    font-weight: bolder;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: darkorange;
    outline: none;
    border: transparent;
    border-bottom: 2px solid turquoise;
    font-feature-settings: cap;
}
.new-input:active{
    border-bottom: 2px solid lightgreen;
}
.new-input::placeholder{
color: coral;
}
.remove_button{
    width: fit-content;
    height: fit-content;
    border: 2px solid transparent;
    margin-left: 1%;
    border-radius: 5px;
    background-color: skyblue;
    color: #fff;
    text-decoration: none;
}
h2{
    margin-left: 5%;
}