body {
	margin: 0;
    font-family: 'Work Sans', sans-serif;
    color: #eeeef9;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url("/images/nexus-bg.jpg");
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
	opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1240px;
    width: 100%;
    padding: 20px;
}

.logo {
    display: block;
    margin-bottom: 60px;
    width: 205px;
    height: auto;
}

.txt-content {
	width: 470px;
    text-align: left;
}

h1 {
    font-weight: 700;
    font-size: 72px;
    line-height: 70px;
    margin-bottom: 25px;
}

h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 35px;
}

.divider {
    width: 16px;
    height: 5px;
    background-color: #86a7ba;
    margin-bottom: 35px;
}

a {
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    color: #eeeef9;
    text-decoration: none;
    margin: 0;
}

@media (max-width: 768px) {
	body {
		align-items: flex-start;
	}
	
	.container {
        width: 100%;
        padding: 35px;
	}
	
	.txt-content {
		width: 100%;
	}
	
    .logo {
        width: 125px;
        margin-bottom: 35px;
    }

    h1 {
        font-size: 42px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    h2 {
        font-size: 23px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .divider {
        margin-bottom: 20px;
    }

    a {
        font-size: 14px;
        line-height: 18px;
    }
}
