body {
    color: white;
    font-family: Verdana,Geneva,sans-serif;
    font-size: 24px;
    font-weight: bold;
}

#background {
    position: absolute;
    min-height: 100%;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    background: url(bg-2880.jpg) no-repeat center center fixed;
    background-color: #828283;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='bg-1920.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='bg-1920.jpg', sizingMethod='scale')";
}

@media (min-width:1281px) and (max-width: 1920px) {
    #background {
	background-image: url(bg-1920.jpg);
    }
}

@media (max-width: 1280px) {
    #background {
	background-image: url(bg-1280.jpg);
    }
}

.welcome-wrapper {
    font-size: 48px;
    position: fixed;
    top: 20px;
    left: 20px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}

.welcome span {
    display: inline;
    white-space: nowrap;
    position: absolute;
    opacity: 0;
    width: 100%;

    transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
}

.welcome span.welcome-show {
    opacity: 1;
}

.arya span {
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}

.button a {
    font-size: 18px;
    display: block;
    width: 120px;
    height: auto;
    background: white;
    color: black;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    position: fixed;
    top: 100px;
    left: 20px;
    text-decoration: none;
}

.button a:hover {
    background: #ccc;
}

