* {
    box-sizing: border-box;
    margin: 0;
	padding: 0;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffdcb5;
}

.container {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.fridge {
    display: flex;
    width: 400px;
    height: 700px;
    background-color: #dbdbdb;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    overflow: hidden;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	
}

.shelf1 {
    height: 23%;
    bottom: 0;
    display: flex;
    width: 100%;
    border-bottom: 5px solid gray;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 10px 10px 0 0 ;
    background-color: #e9e7e4;
}
.shelf2 {
    height: 23%;
    bottom: 0;
    display: flex;
    width: 100%;
    border-bottom: 5px solid gray;
    padding: 10px;
    justify-content: center;
    align-items: center;
    background-color: #f5f3ef;
}
.shelf3 {
    height: 23%;
    bottom: 0;
    display: flex;
    width: 100%;
    border-bottom: 5px solid gray;
    padding: 10px;
    justify-content: center;
    align-items: center;
    background-color: #e9e7e4;

}
.shelf4 {
    height: 23%;
    bottom: 0;
    display: flex;
    width: 100%;
    border-bottom: 5px solid gray;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 10px 10px ;
    background-color: #f5f3ef;
}

