.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.top-window {
    width: 80%; /* Adjust width as needed */
    margin-bottom: 20px;
    margin-top: 10rem;
}

/* Align bottom windows side by side */
.bottom-windows {
    display: flex;
    justify-content: space-between;
    width: 80%; /* Same width as the top window */
}

.bottom-windows .window {
    width: 48%; /* Adjust width to fit side by side */
}