/* default.css */

body {
    overflow-x: hidden;
    background: url('../img/bg.jpg') fixed center #081117;

    color: #c7c0ac;
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
}

.main,
.footer {
    width: 600px;

    position: absolute;
    
    left: 50%;
    margin-left: -300px;
}

.main {
    top: 25%;
}

.logo {
    margin: 0 auto;
    width: 201px;
    height: 119px;
}

.text {
    padding: 50px 0 0 0;
    font-size: 31px;
    font-weight: 200;
}

.btn {
    display: block;
    width: 200px;
    padding: 2px 0 6px 0;
    margin: 10px auto;

    border-width: 1px;
    border-color: #c7c0ac;
    border-style: solid;
    border-radius: 3px;

    color: #c7c0ac;
    text-decoration: none;
}

.footer {
    bottom: 40px;

    font-size: 13px;
}

    .footer a {
        color: #2d9cc8;
    }

@media (max-width: 600px) {
  .main,
  .footer {
    width: 380px;

    position: absolute;
    padding: 0 20px;
    left: 50%;
    margin-left: -200px;
  }
}

@media (max-height: 550px) {
  .footer {
    position: relative;
    margin: 520px 0 0 -300px;
  }
}

@media (max-width: 600px) and (max-height: 550px) {
  .footer {
    position: relative;

    margin: 520px 0 0 -200px;
  }
}