* {
    box-sizing: border-box;
}

.main-container {
    background-color: rgb(176, 185, 233);
    padding: 10px;
    height: 900px;
    display: flex;
    flex-direction: column;
}

.top {
    height: 20%;
    display: flex;
    gap: 10px;
}

.top-item {
    background-color: rgb(0, 0, 0);
    width: 100%;
}

.bottom {
    height: 80%;
    display: flex;
}

.left {
    background-color: pink;
    width: 50%;
    margin: 10px;

}

.center-item {
    background-color: blanchedalmond;
    color: rgb(222, 193, 150);
    align-items: center;
    text-align: center;
    height: 10%;
    width: 10%;
    position: absolute;
    top: 50%;
    left: 20%;
}
.right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 10px;
    margin: 10px;
}

.right-item {
    width: 100%;
    height: 25%;
    background-color: rgb(255, 152, 152);
}


