*{
    margin: 0px;
    padding: 0px;
    background: #222222;
    color: #fff;
    font-family: 'zrnic';
    font-size: 18px;
}

#main {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 80px 32px 1fr 10%;
    background: #222222;

}

#app-title {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 64px;
    font-family: 'zrnic', cursive;
    color: #de4d0b;
}

#add-item {
    width: 100%;
    height: 100%;
    text-align: center;
}

#add-item button{
    width: 20%;
    height: 32px;
    margin: 0px auto;
    background: none;
    border: 2px solid #55aa55;
    border-radius: 32px;
    color: #55aa55;
}


#item-list {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

.list-item {
    width: 80%;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    border: 2px solid #55aa55;
    border-radius: 7px;
    margin-top: 4px;
}

.list-item-title {
    width: 100%;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    font-family: 'Corieur New','comfortaa';
    margin-left: 4px;
    color: #fff;
    overflow: hidden;
}

.list-item-uuid {
    width: 100%;
    height: 32px;
    text-align: center;
    font-size: 8px;
    font-family: "orbitron";
    color: #de4d0b;
    line-height: 32px;
    margin-left: 4px;
}

.list-item-del-btn {
    width: 100px;
    height: 24px;
    margin-top: 4px;
    font-size: 16px;
    background: #222;
    border: 2px solid #777;
    border-radius: 5px;
    color: #ffffff;
    
}

#item-save-btn {
    background: #22222200;
    width: 90%;
    height: 32px;
    margin: 0px auto;
    text-align: center;
    font-size: 24px;
    font-family: 'zrnic';
    line-height: 32px;
    border: 2px solid #777;
    border-radius: 10px;
    color: #777;
}

#item-save-btn:hover {
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
}

#item-save-btn:active {
    box-shadow: 0px 0px 5px 2px #fff;
}

#item-view {
    background: #111;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #777;
}

#item-uuid-txt {
    background: #22222200;
    width: 90%;
    height: 32px;
    margin: 0px auto;
    text-align: center;
    font-size: 24px;
    font-family: 'comfortaa';
    line-height: 32px;
    border: none;
    border: 2px solid #777;
    border-radius: 10px;
    color: #777;
}

#item-name-txt {
    background: #22222200;
    width: 90%;
    height: 32px;
    margin: 0px auto;
    text-align: center;
    font-size: 24px;
    font-family: 'comfortaa';
    line-height: 32px;
    border: none;
    border: 2px solid #777;
    border-radius: 10px;
    color: #777;
}

#item-txt {
    color: #fff;
    background: #00000000;
    border-radius: 10px;
    border: none;
    border: 2px solid #777;
    padding: 16px;
    text-align: left;
    font-size: 18px;
    font-family: "Courier New";
    width: 90%;
    height: calc(100% - 102px);
}