.image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.image img {
    height: 150px;
}

.notice {
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    height: 80vh;
}

.notice a {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
}

.all-elem {
    min-height: 70vh;
}

.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) {
    .notice a {
        font-size: 16px;
    }

    .image img {
        height: 100px;
    }
}