body {
	background-image: url('assets/background.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.3); /* Black with 30% opacity */
	background-blend-mode: multiply; /* or overlay, color-dodge, hue, saturation, etc.*/
    background-size: cover;
    background-attachment: fixed;
	margin-top: 200px;
}

.header {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3.5em;
    max-width: 80%;
    margin: 0 auto;
    #height: 50vh;
    color: white;
    text-shadow: 2px 2px 4px #000000;
    display: flex;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.text-container {
    max-width: 80%;
    margin: 0 auto;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2em;
    color: white;
    text-shadow: 2px 2px 4px #000000;
    text-transform: uppercase;
    padding: 20px;
}

a {
    color: hotpink;
    text-decoration: none;
}

.footer {
    max-width: 80%;
    margin: 0 auto;
    font-family: "Anton", sans-serif;
    font-weight: 400;
	font-size: 20px;
    font-style: normal;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}

@media only screen and (max-width: 768px) {
    body {
        text-align: center;
		margin-top: 0px;
    }

    .header,
    .text-container,
    .footer {
        max-width: 100%;
    }
}