@font-face {
    font-family: minionProBold;
    src: url(Minion\ Pro\ Bold.ttf);
  }

  @font-face {
    font-family: corbelRegular;
    src: url(CORBEL.TTF);
  }

body,
html {
    height: 100%;
    margin: 0;

}

.bg {
    /* The image used */
    background-image: url("../images/background.jpg");

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: right;
    background-repeat: no-repeat;
    background-size: 100% 100%;

    position:relative;
}

.logo {
    position: absolute;
    left: 1.6%;
    top: 4%;
}

.text {
    position: absolute;
    top: 41%;
    left: 4%;

}

.text p {
    color: white;
    font-size:60px;
    font-family: minionProBold;
}

.footer {
    background-color: black;
    text-align: center;

    width: 100%;

    position: absolute;
    bottom: 0;
    
    margin-bottom: 20px;
}

.footer p {
    color: lightgray;
    font-size: 16px;
    line-height: 10px;
    
    font-family: corbelRegular;
}


@media screen and (max-width: 600px) {

    .bg {
        background-position: center;
        background-size: cover;
    }

    .text {
        left: 12%;
    }

    .text p {
        font-size:40px;
        font-family: minionProBold;
    }

    .footer p {
        line-height: 16px;
    }
}
