* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffdcb5;
}
.fridge {
    display: flex;
    flex-direction: row;
    width: 400px;
    height: 700px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    overflow: hidden;
}
.door {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: #dbdbdb;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    position: relative;
    /* z-index: 1; */
}
.handle {
    width: 10px;
    height: 200px;
    background-color: #7e7e7e;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(150px);
    /* z-index: 2; */
}


.door::after {
    content: "";
    display: block;
    width: 70%;
    height: 10px;
    background-color: #ebebeb;
    position: absolute;
    bottom: 10%;
}
