:root{
    --txt: azure;
    --bg: darkblue;
    --link: aqua;
    --base: 36px;
}

body{
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-family: sans-serif;
    font-size: var(--base);
    line-height: 1.3em;
    letter-spacing: .015em;
    color: var(--txt);
    /* background: aqua; */
    background: var(--bg);
    padding: 1em;
}

header{
    margin-bottom: 3em;
}

a,
a:visited{
    color: var(--txt);
    color: var(--link);
    text-underline-offset: .12em;
}

h1{
    font-size: var(--base);
    font-weight: 500;
    line-height: 0;
    text-align: center;
}

#home{
    color: red;
}

p{
    text-align: justify;
}



article{
    max-width: 75ch;
    display: block;
    margin: auto;
    /* margin-top: 10vh; */

}

img{
    display: block;
    max-width: 100%;
    max-height: 55vh;
    margin: 0 auto;
}

#server ul,
#working ul{
    list-style-type: none;
}

#server{
    --txt: darkblue;
    --bg: aqua;
}

#working{
    --bg: black;
    --txt: azure;
}

#working button{
    background: none;
    border: none;
    color: var(--txt);
    font-size: var(--base);
    font-family: sans-serif;

    #home{
        color: white;
    }
}

#working #home{
    color: white;
}

#player{
    display: flex;
    justify-content: center;
    gap: 50%;
}


@media only screen and (max-width: 1200px) {
    :root{
        --base: 24px;
    }
  }

@media only screen and (max-width: 600px) {
    :root{
        --base: 18px;
    }
  }