/************ Copyright by The Jin Studio ***********/
@font-face {
  font-family: 'Raleway';
  font-weight: 100;
  src: url('/fonts/Raleway-ExtraLight.ttf') format('truetype');
}

html {
    height: 100vh;
}

body {
    font-family: 'Raleway';
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-color: #555555;
    overflow: hidden;
}

#Wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    text-align: center;
    background-image: -webkit-linear-gradient(top, #cab4b4 0, #a99a9a 43vh, #e2d4d4 43.2vh, #fff2f2 100vh);
    background-image: linear-gradient(to bottom, #cab4b4 0, #a99a9a 43vh, #e2d4d4 43.2vh, #fff2f2 100vh);
    overflow: hidden;
}

#Logo {
    position: relative;
    margin-top: 32vh;
    max-width: 256px;
}

.hidden {
    opacity: 0;
}

p {
    color: #555555;
}

.serviceTypeBox {
    height: 55px;
}

.typeOfService {
    position: absolute;
    width: 100%;
    transition: opacity 1s;
}

.typeOfService.active {
    transition-delay: .8s;
    opacity: 1;
}

.serviceEmail {
    font-size: 11px;
}

#Footer {
    position: absolute;
    width: 100vw;
    bottom: 50px;
    font-size: 8px;
    text-transform: uppercase;
    color: #777777;
    letter-spacing: 3px;
    font-weight: 400;
    text-align: center;
    font-family: "Raleway";
}

@media screen and (max-height: 1000px) {
    #Logo {
        margin-top: 30vh;
    }
    #Wrapper {
        background-image: -webkit-linear-gradient(top, #cab4b4 0, #a99a9a 46vh, #e2d4d4 46.4vh, #fff2f2 100vh);
        background-image: linear-gradient(to bottom, #cab4b4 0, #a99a9a 46vh, #e2d4d4 46.5vh, #fff2f2 100vh);
    }
}

@media screen and (max-height: 600px) {
    #Wrapper {
        background-image: -webkit-linear-gradient(top, #cab4b4 0, #a99a9a 51vh, #e2d4d4 51.4vh, #fff2f2 100vh);
        background-image: linear-gradient(to bottom, #cab4b4 0, #a99a9a 51vh, #e2d4d4 51.4vh, #fff2f2 100vh);
    }
}

@media screen and (max-width: 767px) {
    #Logo {
        margin-top: 20vh;
        max-width: 196px;
    }
}