.box {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, rgb(8, 249, 8) 50%, blue 50%);
}

.box img {
    height: 400px;
    width: 800px;
    border: 2px solid black;
}

.network-status {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 5px 0;
    background-color: rgb(16, 169, 16);
    color: white;
    font-family: arial;
    font-size: 1.2em;
    transition: all 0.5s;
}

.network-details {
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px #000;
    letter-spacing: 1px;
    font-weight: 700;
}

@media (max-width:900px) {
    .box {
        margin-top: 42px;
    }

    .box img {
        height: 60%;
        width: 60%;
    }
}

@media (max-width:400px) {
    .box img {
        width: 100%;
        border: 0;
    }
}