body, html {
    margin: 0;
    padding: 0;
    height: 100%;
	background-color: #000000;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #000000; /* White background */
}

.logo img {
    max-width: 100%;
    height: auto;
}

.name h1 {
	padding-bottom: 1px;
	text-align: center;
	font-family: 'Krona One', sans-serif;
	font-weight: 800;
}

.name h3 {
	margin-top: 1px;
	padding-top: 1px;
	text-align: center;
	font-family: 'Krona One', sans-serif;
}

.contact-info {
    margin-top: 20px;
    text-align: center;
}

.contact-info a:link {
    color: grey;
}

.contact-info a:hover {
	color: black;
	text-decoration: none;
}

/* Responsive Styles */
@media only screen and (max-width: 600px) {
    .logo img {
         min-width: 100%;
    }
}
