* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
}

body {
    background: #fff;
    color: #000;
    text-align: center;  /* center inline/inline-block horizontally */
    height: 400px;
    line-height: 400px;
}

#servername {
    display: inline-block;
    font-size: 4rem;
    margin-top: 4rem;
    padding-top: 4rem;
}

#mapname, #status {
    font-size: 2rem;
}

table {
    display: none; /* inline-block */
    vertical-align: middle;
    line-height: normal;
}

#progress-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 16px;
}

#progress-bar {
    background: #d44e4e;
    height: 100%;
    transition: width 10ms;
}

#fish-img {
    width: 100%;
    height: 140%;
    position: fixed;
    top: -160px;
    left: 0;
    z-index: -1;
}

#opaq {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    opacity: 0.5;
    background: #fff;
    z-index: -1;
}