html {
    font-family: 'Open Sans', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to left, var(--tertiary-color), var(--secondary-color), var(--tertiary-color));
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

.center {
    text-align: center;
}

body div {
    padding: 20px;
    width: var(--body-div-width, 50%);
}

#navigation {
    margin-top: -5px;
}

#navigation a {
    text-decoration: none;
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 2%;
    font-size: x-large;
    font-weight: 300;
}

#contact {
    text-align: center;
}

#contact a {
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 2%;
    font-weight: 500;
    text-shadow: 2px 0px 12px var(--secondary-color);
}

#navigation a:hover {
    background-color: var(--secondary-color);
    box-shadow: 0px 0px 40px var(--tertiary-color);
}

h2 span {
    text-transform: uppercase;
    font-size: smaller;
    background-color: var(--h2-span-background-color, var(--primary-color));
    color: var(--h2-span-color, var(--secondary-color));
    padding: 10px;
}

#logo {
    background-image: var(--logo-background-url);
    background-attachment: var(--logo-background-attachment);
    background-size: var(--logo-background-size);
    background-position: var(--logo-background-position);
    min-height: var(--logo-min-height);
}

#logo img {
    width: var(--logo-width);
    height: var(--logo-height);
    margin-right: 10px; /* Add spacing between image and text */
}

.fab {
    font-size: 2rem;
    margin: 0 10px;
    color: var(--primary-color);
    text-shadow: 5px 5px 15px var(--secondary-color);
}

.fab:hover {
    color: var(--secondary-color);
    text-shadow: 5px 5px 15px var(--primary-color);
}

#bio {
    background-image: var(--bio-background-image);
    min-height: var(--bio-min-height);
    background-attachment: var(--bio-background-attachment);
    background-repeat: var(--bio-background-repeat);
    background-size: var(--bio-background-size);
    background-position: var(--bio-background-position);
    clear: var(--bio-clear);
    margin-top: var(--bio-margin-top);
    margin-bottom: var(--bio-margin-bottom);
}

p#name {
    color: var(--p-name-color)
}

p#about {
    text-align: var(--p-about-text-align)
}

#contact {
    background-image: var(--contact-background-url);
    background-size: var(--contact-background-size);
    position: var(--contact-background-position);
    min-height: var(--contact-min-height);
}

#gallery {
    height: 200px;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    margin-top: 50px;
}

#gallery h2 {
    position: absolute;
    margin-top: -50px;
}

#gallery img {
    height: 200px;
    width: auto;
    display: inline-block;
    padding-right: 10px;
}

footer {
    color: var(--primary-color);
}
