@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin: 0px;
    background-color: #dbdbdb;
}

* {
    user-select: none;
}

#background {
    transform: translateY(-100vh);
    transition: 0.5s ease-in-out transform;
    transform: translateY(0px);
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: #2c2c2c;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

#background.before {
    transform: translateY(-100vh);
}

#background.loaded {
    transition: 1s ease-in-out transform;
    transform: translateY(0px);
}

.hide {
    visibility: hidden;
}

.show {
    visibility: visible;
}

header {
    height: 0px;
    color: gray;
}
header.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: white;
    font-family: 'Montserrat';
}

header > h1.hide {
    color: gray;
}

header > h2.hide {
    color: gray;
}

header > h1.show {
    margin: 0.26vw;
    transition: 1s ease-in-out;
}

header > h2.show {
    width: 26vw;
    text-align: center;
    margin: 0.26vw;
    transition: 1s ease-in-out;
}

header.mount {
    transition: 1s ease-in-out transform;
    transform: translateY(-33vh);
}

#imgDiv {
    display: flex;
    justify-content: center;
}

#img {
    position: fixed;
    top: 35vh;
    width: 40vw;
    box-shadow: 5px 5px 21px 6px rgba(255,255,255,0.3);
}

#img.before {
    top: 35vh;
    /* transform: translateY(100vh); */
    transform: scale(0);
    visibility: hidden;
    position: fixed;
}

#img.loaded {
    transition: 1s ease-in-out transform;
    /* transform: translateY(0vh); */
    transform: scale(1);
    position: fixed;
    top: 32vh;
}

#link.hide {
    text-decoration: none;
    color: #000000;
}

#link.show {
    transition: 0.3s;
    text-decoration: none;
    color: white;
}

#link:hover {
    transition: 0.3s;
    text-decoration: none;
    color: rgb(116, 116, 116);
}

#downloadClient.hide {
    transform: translateY(25vh);
}

#downloadClient.show {
    transition: 1.5s ease-in-out transform;
    transform: translateY(0vh);
}

#downloadServer.hide {
    transform: translateY(25vh);
}

#downloadServer.show {
    transition: 1.5s ease-in-out transform;
    transform: translateY(0vh);
}

#downloadClient {
    transition: 0.3s;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat';
    padding: 20px;
    background-color: rgb(66, 66, 66);
    box-shadow: 2px 2px 3px 2px rgba(109, 109, 109, 0.67);
    margin: 8px;
    border-radius: 15px;
}

#downloadServer {
    transition: 0.3s;
    text-decoration: none;
    color: white;
    font-family: 'Montserrat';
    padding: 20px;
    background-color: rgb(66, 66, 66);
    box-shadow: 2px 2px 3px 2px rgba(109, 109, 109, 0.67);
    margin: 8px;
    border-radius: 15px;
}

#downloadClient:hover {
    transition: 0.3s;
    box-shadow: 2px 2px 3px 2px rgba(63, 63, 63, 0.8);
}

#downloadServer:hover {
    transition: 0.3s;
    box-shadow: 2px 2px 3px 2px rgba(63, 63, 63, 0.8);
}

#dlClientDiv {
    flex-direction: row;
    display: flex;
    justify-content: center;
}

#btns2 {
    position: fixed;
    top: 85vh;
}