.item img {
    clear:both;
    width: 200px;
    height: auto;
}
section > h1 {
    text-align: center;
    font-size: 2em;
    padding-top: 20px;
    margin-bottom: 0px;
}
#statuslist {
    width: 100%;
    margin: 0 auto;
}
#statuslist > ul {
    list-style: none;
    padding: 30px;
    margin: 0;
}
#statuslist > ul > li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px 0;
    padding: 20px;
    border: 1.5px solid#16a198;
}
.item {
    display: flex;
    flex-direction: row;
    width : 100%;
    justify-content: space-between;
    @media screen and (max-width: 800px) {
        flex-direction: column;
    }
}
.iteminfo {
    width: 80%;
    padding: 0px 20px;
}
.iteminfo h2 {
    font-size: 1.5em;
    padding : 5px 0px;
}
.iteminfo p {
    font-size: 1em;
    padding : 3px 10px;
}
.iteminfo h3 {
    font-size: 1.2em;
    padding : 0px 10px;
    color: red;
}
.retbutton {
    width: 90%;
    padding: 5% 5%;
    text-align: center;
}
button {
    width: 100%;
    height: 30px;
    background-color: #16a198;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modalContainer {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100vw;
    height: 100vh;

    background-color: rgba(255, 255, 255, 0.7);
}
.modalContainer.visible{
    display: flex;
    justify-content: center;
    align-items: center;
}
.closeButton{
    position: absolute;
    top: 16px;
    right: 32px;

    font-size: 20px;
    font-weight: 800;
}

.modalContainer .modalContent{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    font-size: 16px;
}
.modalContainer .modalContent .preview{
    max-width: 480px;
    max-height: 640px;
    width: 50%;
    height: 50%;
}