/* ----------------------------------------------------------------------------------- */
/* layout-a.css */
/* ----------------------------------------------------------------------------------- */
a {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css header and navigation */
/* ----------------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: #cccccc 1px solid;
}

.header-content {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 10% 15px 10%;
}

.site-name {
    flex: 1;
    font-size: 30px;
    font-weight: 400;
}

.navigation-container {
    display: flex;
    justify-content: right;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css body */
/* ----------------------------------------------------------------------------------- */
.body {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 70px;
    font-size: 22px;
    min-height: 75vh;
}

.bodyDescription {
    padding-top: 30px;
    font-size: 15px;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css gallery */
/* ----------------------------------------------------------------------------------- */
h3.gallery-title {
    font-size: 20px;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css footer */
/* ----------------------------------------------------------------------------------- */
.footer {
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 10%;
}

.footer-item {
    width: 50%;
}

.site-links {
    width: 50%;
}

/* ----------------------------------------------------------------------------------- */
/* layout-a.css media queries */
/* ----------------------------------------------------------------------------------- */
@media screen and (max-width: 575px) {
    .header-content, .body, .footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .header-content, .body, .footer {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .header-content, .body, .footer {
        padding-left: 40px;
        padding-right: 40px;
    }
}