/* ******************************
Mobile:
****************************** */

@media (max-width:768px) {
    img.background {
        height: 50vh !important;
    }
}

.logo-mobile-box {
    text-align: center;
}

.logo-mobile {
    width: 200px;
    height: 60px;
    margin: 5px 0;
}

/* ******************************
General Styles:
****************************** */

a:focus {
    text-decoration: none;
    color: rgb(8, 0, 3);
    outline: none;
}

.reset {
    padding: 0;
    margin: 0;
}

.background {
    width: 100%;
    height: 100vh;
    -webkit-filter: opacity(50%);
    filter: opacity(50%);
    -webkit-transition: filter .3s linear;
    -moz-transition: filter .3s linear;
    -o-transition: filter .3s linear;
    transition: filter .3s linear;
}

/* ******************************
Logo:
****************************** */

.logo-desktop-box {
    text-align: center;
    position: absolute;
    top: 20%;
    -ms-transform: translateY(-20%);
    transform: translateY(-20%);
    z-index: 1;
}

/* ******************************
buttons:
****************************** */

.keys {
    display: block;
    width: 200px;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    background-color: rgb(255, 255, 255);
    color: rgb(255, 195, 26);
    border: 2px solid rgb(255, 195, 26);
    border-radius: 5px;
    -webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;
    -webkit-transition: background-color .3s linear;
    -moz-transition: background-color .3s linear;
    -o-transition: background-color .3s linear;
    transition: background-color .3s linear;
    padding: 20px 0;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 1;
}

.keys:hover {
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 195, 26);
    border-color: rgb(255, 255, 255);
}

.keys:hover+.background {
    filter: opacity(100%);
    -webkit-filter: opacity(100%);
}
