/* banner/logo */
:root {
    --header-height: clamp(90px, 250px, 300px); /* adjust as needed */
}
.site-header {
    width: 100%;
    position: static;
    height: var(--header-height);
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 50px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
}
.logo {
    width: 100%;
    height: 100%;
    display: block
}
.logo img {
    display: block;
    height: 100%; /* allow for header padding */
    width: 100%;
    object-fit: cover;
}

header {
    font-family: garamond, serif;
    text-align: center;
    font-size: 2rem;
    padding-top: 10px;
}

/* push page content below the fixed header */
body {
    font-family: garamond, serif;
    padding-top: 0;
    box-sizing: border-box;
    background-color: whitesmoke;
}
/* all the places for the text info */
div1 {
    text-align: center;
    margin: 50px;
    padding-right: 100px;
}
/*project gallery stlyles*/
.project.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 5px;
    align-items: flex-start;
}
.project.gallery a {
    flex: 0 0 calc(25% - 8px); /* fixed 4-up column width; won't grow to fill a lone spot */
    max-width: calc(25% - 8px);
    box-sizing: border-box;
    border: 1px solid hsl(0, 0%, 60%);
    text-decoration: none;
}
.project.gallery a:hover {
    border-color: hsl(0, 0%, 20%);
}
.project.gallery img {
    width: 100%;
    height: auto;
    display: block;
}

/*Centering of profiles */
.profile img {
    width: 20%;
    height: auto;
    border: 1px black solid;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* created by Colton Bennett /*