* {
    box-sizing: border-box;
}
html,
body {
    padding: 0px;
    margin: 0px;
}
body {
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    background: #fff;
    line-height: 1.5em;
    color: #111;
}
body:before {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    content: " ";
    background-image: url("../../images/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
	filter: grayscale(0.8);
    opacity: 0.1;
}
.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%);
}
#logo {
    margin-bottom: 45px;
}
#logo img {
    max-width: 100%;
}
a {
    color: #fff;
    text-decoration: underline;
}
@media screen and (max-width: 1024px) {
    body {
        font-size: 17px;
        line-height: 26px;
    }
    body:before {
        background-position: right;
        opacity: 0.15;
    }
	#logo img{
	width: 250px;
	}
}

a {
    color: #111;
}
