html, body {
    font-family: Arial, serif;
    color: white;
    margin: 0;
    padding: 0;
    background-color: black;
}

body {
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 100%), url("../images/lounge-background.jpg");
    background: linear-gradient(0deg, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 40%, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 100%), url("../images/lounge-background.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    display:flex;
    justify-content: center;
}

#overlay {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: black;
    cursor: pointer;
}

#container {
    margin: 20px;
    border-radius: 10px;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

#header {
    text-align: center;
    padding: 20px;
}

#header > img {
    width: 100%;
    max-width: 800px;
    filter: drop-shadow(0px 0px 3px #000);
}

#header p {
    color: white;
    text-shadow: 0 0 5px black;
    font-size: 2.5vmin;
}
#header p > a {
    color: white;
}

#header > a {
    color: white;
    text-shadow: 0 0 2px black;
    font-size: 2.5vmin;
}

#body {
    display: flex;
    text-shadow: 0 0 3px #000;
    margin-top: 20px;
    margin-bottom: 20px;
}

#body > div {
    display: flex;
    padding: 20px;
    flex: 1;
    flex-direction: column;
}

#body > div > h1 {
    font-size: 3.0vmin;
}

#body > div > span {
    display: flex;
}

#body > div > span:first-child {
    justify-content: center;
    flex: 0;
    height: auto;
}

#body > div > span > a {
    padding-top: 5px;
    padding-bottom: 5px;
    color: #a5a5a5;
    font-size: 2.5vmin;
}

#body > div img {
    width:30%;
}

#mac {
    border-left: 1px solid white;
}

#footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    font-size: 1.5vmin;
}