html {
	height: 100vh;
}
body {
	min-height: 100%;
	margin: 0;
    height: 100%;
	font-family: 'Lora', serif;
    background-image: url('./img/bg-image-2.jpg');
    background-size: cover;
    background-position: left;
}
h1, h2, h3, p{
    line-height: 1.5;
	margin: 0;
}
h1 {
    font-size: 60px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.text-content p {
    color: #fff;
    font-size: 30px;
}
p a {
	color: #fff;
}
.text-content p.quote {
    font-size: 25px;
    margin-top: 10px;
}
.section {
    position: relative;
    width: 100%;
    display: flex;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}
.centerWrapper {
    padding-left: 8.333vw;
}
.bk {
    height: 100%;
    position: relative;
}
body:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0 / 30%);
    z-index: 0;
}
footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 0 20px;
    box-sizing: border-box;
}
/*---------------------------------------------------------
-----------------------------------------------------------
-----------------------MEDIA QUERY------------------------- 
-----------------------------------------------------------
-----------------------------------------------------------*/

@media only screen and (max-width: 1440px) {
    .text-content p {
        font-size: 23px;
    }
    .text-content p.quote {
        font-size: 22px;
    }
    h1 {
        font-size: 50px;
        margin-bottom: 25px;
    }
    footer {
        bottom: 10px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 992px) {
    h1 {
        font-size: 45px;
    }
    .text-content p {
        font-size: 22px;
    }
    .text-content p.quote {
        font-size: 20px;
    }
    footer {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    body {
        background-position: 30%;
    }
    h1 {
        font-size: 28px;
        line-height: 1;
        margin: 20px 0;
    }
    .text-content {
        padding-bottom: 30px;
    }
    .text-content p {
        font-size: 19px;
    }
    .text-content p.quote {
        font-size: 17px;
    }
    footer {
        font-size: 13px;
    }
}
