/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    body {
	background: #111 !important;
	color: #ccc !important;
    }

    a,
    a:visited {
	color: lightblue !important;
    }
}

a,
a:visited {
    color: blue;
}

body {
    margin: auto;
    width: 80%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.centered-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.image-row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    flex-direction: column;
}

.header-banner {
    display: flex;
    justify-content: space-around;
}

.logo-picture {
    display: flex;
    align-items: center;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

footer{
    margin-bottom: 10%;
}

.mastodon-post {
  display: inline-block;
  padding: 0.35em 0.75em;
  font-size: 0.9em;
  color: inherit;
  text-decoration: none;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.mastodon-post:hover {
  opacity: 1;
  color: #6364ff;
  border-color: #6364ff;
}
