body {
    background-color: #121212;
    background: linear-gradient(-90deg, #00545C, #121212, #121212, #00545C);
    background-size: 400% 400%;
    animation: gradient 20s ease infinite;
    color: #ffffff;
    font-family: "Geist Mono", monospace;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    position: relative;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.container h1 {
    font-size: 6em;
    margin: 0;
}

.container a {
    font-size: 2em;
    opacity: 0.7;
    font-weight: normal;
    margin-top: 20px;
}

.container p {
    font-size: 1.6em;
    margin: 0;
    opacity: 0.85;
    font-weight: normal;
}

.headline p {
    text-align: center;
}

.site-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    pointer-events: auto;
}

.site-footer p {
    margin: 0;
    padding: 4px 8px;
    font-size: 1.3em;
}

.linkedin-icon {
    text-decoration: none;
    color:white;
    font-size: 1.4em;
}