@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,700');
html, body {
    margin: 0;
    height: 100%;
}

body {
    background: #000 !important;
    font-family: 'Roboto', sans-serif;
    color: #fff;
}

#preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    transition: opacity linear 1s;
}

.loading_line {
    width: 150px;
    height: 18px;
    border: 2px solid #b2b2b2;
    border-radius: 7px;
    margin: 0 auto;
    padding: 2px 1px;
    overflow: hidden;
    font-size: 0;
}

.loading_line .rect {
    width: 9px;
    height: 100%;
    background: linear-gradient(to bottom, #2838c7 0%, #5979ef 17%, #869ef3 32%, #869ef3 45%, #5979ef 59%, #2838c7 100%);
    display: inline-block;
    margin-right: 2px;
    animation: loader 2s infinite;
    animation-timing-function: linear;
}

.logo {
    width: 220px;
}

#img-winxp-logo {
    transform: translateX(-25%);
}

.hide {
    opacity: 0;
}

.show {
    opacity: 1 !important;
}

#homepage {
    transition: opacity linear 1s;
}

.box {
    width: 200px;
    height: 150px;
    background: url("/images/wood_bg.jpg");
    background-size: cover;
    transition: translate linear 0.2s;
}

.box:hover {
    translate: 0px -20px;
}

#winxp-wallpaper {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
}

@keyframes loader {
    0% {
        transform: translate(-30px);
    }
    100% {
        transform: translate(150px);
    }
}

.text-wood {
    color: #fff;
    mix-blend-mode: darken;
    text-shadow: 0 0 0.05em rgba(0, 0, 0, 0.2), -0.025em 0.025em 0.1em #000,
      -0.05em 0.05em 0.1em #000, -0.1em 0.1em 0.3em #000,
      -0.1em 0.1em 0.5em rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 26px;
    user-select: none;
}

a:hover {
    text-decoration: none !important;
}


#footer {
    overflow: hidden;
}

#footer span {
    color: #fff;
    text-shadow: 0 0 0.05em rgba(0, 0, 0, 0.2), -0.025em 0.025em 0.1em #000,
      -0.05em 0.05em 0.1em #000, -0.1em 0.1em 0.3em #000,
      -0.1em 0.1em 0.5em rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 14px;
    user-select: none;
}