body{
    height: 100vh;
    width: 100vw;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#container{
    width: 74vw;
    background-color: rgb(176, 176, 176);
    height: 80vh;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
}
form{
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    width: 60vw;
    gap: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
input{
    margin: 0;
    height: 4vh;
    border-radius: 5px;
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#submit{
    width: 40vw;
    height: 6vh;
    margin-left: 18%;
    background-color: greenyellow;
}
.itemcontainer{
    gap: 12px;
    display: flex;
    padding-top: 6px;
}
@media screen and (max-width:1080px){
    .itemcontainer{
        flex-direction: column;
        padding-top: 18px;
    }
}