body {
    background-color: lightgray;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
}

.main {
    background-color: rgb(3, 187, 248);
    width: 600px;
    padding: 10px;
}

.addItemsForm {
    display: flex;
    justify-content: space-between;
}

#input1 {
    width: 330px;
    height: 25px;
    border-style: solid;
    border-width: 2px;
    border-color: white;
    border-radius: 0px;
    font-size: 20px;
}

#input1:focus {
    outline: none;
    border-color: blue;
}

#addItem {
    width: 80px;
    height: 30px;
    border-style: solid;
    background-color: blue;
    border-color: blue;
    font-size: 20px;
    color: white;
}

#addItem:active {
    background-color: rgb(63, 63, 244);
}

#display {
    width: 600px;
    height: 450px;
    background-color: white;
    margin-top: 10px;
    margin-bottom: 10px;
    color: black;
    font-size: 30px;
    font-family: arial;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
}

#deletebutton {
    width: 80px;
    height: 30px;
    border-style: solid;
    background-color: red;
    border-color: red;
    font-size: 20px;
    color: white;
}

#deletebutton:active {
    background-color: rgb(252, 98, 95)
}

#searchButton {
    width: 80px;
    height: 30px;
    border-style: solid;
    background-color: rgb(2, 255, 0);
    border-color: rgb(2, 255, 0);
    font-size: 20px;
    color: white;
}

#searchButton:active {
    background-color: rgb(130, 247, 130);
}