html, body { height: 100%; }

body {
    display: flex;
    align-items: center;
    background: url("../imgs/bg.jpg");
    background-size: cover;
}

#title {
    display: none;
    color:white;
    text-align:center;
}

.container {
    padding: 0;
    max-width: 360px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#form {
    display: none;
    padding: 20px 20px 5px 20px;
}

label { color: white; }
input { opacity: 0.8; }

#closeServer { text-align: right; }

.btn {
    opacity: 0.8;
    color: white;
    background: #0549de;
}

.btn:hover {
    opacity: 0.6;
    color: white;
}

#download > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
}

#download > div:hover {
    background: rgba(255, 255, 255, 0.3);
}

#download-describe {
    display: none;
    color: white;
    font-size: 15px;
    margin-top: 20px;
    padding: 0 20px;
}

#download-describe a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

#contact {
    color: white;
    height: 50px;
    font-size: 15px;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact a {
    color: white !important;
}