* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    width: 100vw;
    height: 100vh;
    background-image: url(images/wireframe-sphere.png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;  
    background-color: #F5F5DB;
}

.nav-bar {
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 10vh;
    padding: 1rem;
    background-color: #F5F5DB;
    display: flex;
    gap: 5vw;
    font-family: sans-serif;    
    font-size: calc(.5rem + 2vw);
    justify-items: center; /* Center div within column */
}

.nav-bar div {
    width: 75%;
    display: flex;
    border-radius: 10px;
    align-items: center; /* Center text horizontally and vertically within div */
    justify-content: center;
}

.nav-bar a {
    flex: 1;
    text-decoration: none;
    outline: none;
    text-align: center;
    line-height: 3;
    color: black;
}

.nav-bar a:hover {
    color: #7a4d59;
    font-weight: bold;
}

.active a {
    width: 75%;
    display: flex;
    border-radius: 10px;
    align-items: center; /* Center text horizontally and vertically within div */
    justify-content: center;
    background-color: #e6ded3;
    color: #7a4d59;
    font-weight: bold;   

}

section {
    display: grid;
    padding-top: 10vh;
    max-width: 100%;
    min-height: 100vh;
    background-color: #f5f5db;
    background-image: url(images/wireframe-sphere.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 3em;
    line-height: 90%;
}

h2 {
    font-family: 'Lora', serif;
    color: #7a4d59;
    font-size: 1.5em;
}

p {
    font-family: 'Lora', serif;
    font-size: 1em;
}



.about-container {
    width: auto;
    padding: 1em;
    display: grid;
    grid-template-areas:
    "b a"
    "b c"
    "b d"
    ". .";
    grid-template-columns: 100px 2fr;
    grid-template-rows: 6em 3em fit-content(40%) 10vh;
    column-gap: 1em;
}

.about-image {
    grid-area: b;
    max-height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-header {
    grid-area: a;
}

.about-subheader {
    grid-area: c;
}

.about-bodytext {
    padding-top: 1em;
    border-top: 5px solid #422235;
    grid-area: d;
    width: 100%;
    height: fit-content;
    text-align: left;

}

.about-bodytext p {
    line-height: 1.25em;
}

.contact-container {
    width: auto;
    padding: 1em;
  }

  .contact-container h1 {

    padding-top: 1rem;
    padding-bottom: 1rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
}

.contact-container p {
    margin: auto;
    width: 90%;
    text-align: justify;
    color: #7a4d59;
      font-weight: bold;
      font-size: 1rem;
      line-height: 110%;
}



.selfie {

}

.selfie img {
    display: block;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0px 4px 4px rgb(0 0 0 / .25));
    border-radius: 50%;
  }

svg {
    box-sizing: content-box;
    padding: 1rem;
    width: 3rem;
    height: 3rem;
    fill: black;
}
  
svg:hover {
    fill: #7a4d59;
}
  
.icon-bar {
    display: inline-flex;
    justify-content: center;     
    max-height: 4em;
    width: 100%;
}
