header {
    background-color: #333;
    padding: 1em;
    border-bottom: 3px solid #E09A18;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 60px;
    margin-right: 20px;
}

#site-title {
    color: #458588;
    font-size: 36px;
    font-family: "JetBrains Mono", "Nerd", sans-serif;
    margin: 0;
}

#site-title:hover {
    color: #D44747;
}

.large-text {
    font-size: 1.5em;
    margin: 0;
    color: #ebdbb2;
}

@keyframes blinking {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.blinking {
    animation: opacity 1s ease-in-out infinite;
}

.header-right {
    display: flex;
    align-items: center;
}

.social {
    margin-left: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a{
    font-weight: bold;
    transition: color 0.3s;
    text-decoration: none;
    color: #458588;
}

nav a:hover {
    color: #00b7eb;
}

body {
    background-color: #333;
    margin: 0 auto;
    max-width: 50em;
    font-family: "JetBrains Mono", sans-serif;
    line-height: 1.5;
    padding: 4em 1em;
    height: 100%;
}

.main-content {
    min-height: 100%;
    margin-bottom: 100px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 10px;
}

.about-block {
    flex-basis: calc(35% - 1px);
    padding: 20px;
    margin: 4px;
    border: 2px solid #333;
    background-color: #1d2021;
}

.about-block h2 {
    font-size: 18px;
    color: #d3869b;
}

.about-block p {
    font-size: 14px;
}

@media (max-width; 768px) {
    .about-block {
        flex-basis: calc(100% - 10px);
    }
}



footer {
    background-color: #333;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 3px solid #E09A18;
}

.footer-social {
    display: flex;
    align-items: center;
}

h1 {
    text-align: center;
    color: #458588;
}

h2 {
    margin-top: 1em;
    padding-top: 1em;
}

p {
    color: #ebdbb2;
}

footer p {
    text-align: center;
    color: #ebdbbe;
}
