body {
    font-family: Arial, sans-serif;
    display: grid;
    place-items: center;
    align-items: center;
}
header {

    padding: 1rem;
    text-align: center;
    color: #351c75;
    font-family: "Courier New", Courier, monospace;
    font-size:xxx-large;
}
footer {
    color: white;
    text-align: center;
    position: absolute;
    bottom: 0px;
    height: 100px;
    width: 100%;   
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1rem;
}
.box {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    margin: 1rem;
    padding: 1rem;
    flex: 1 1 300px; /* Allows boxes to grow and shrink, with a base width of 300px. */
    min-width: 250px; /* Ensures boxes don't get too narrow on small screens. */
}
.w {
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 100px;
}
.outlet {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 80px;
}
/* Tablet styles */
@media (max-width: 768px) { /* Applies styles when screen width is 768px or less. */
    .box {
        flex: 1 1 45%; /*  Changes the flex basis to allow for two columns on tablets.*/
    }
}

/* Mobile styles */
@media (max-width: 480px) { /* Applies styles when screen width is 480px or less. */
    .box {
        flex: 1 1 100%; /* Stacks boxes into a single column on mobile. */
        margin: 0.5rem 0; /* Adjusts margins for single column layout. */
    }
}