
/* page layout */
.navagation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 200px;
    margin-bottom: 20px;
}

.page {
    background-color:#F2CC8F;
    border: 3px solid #000;
    border-radius: 8%;
    padding: 70px;
    width: 150px;
    height: 70px;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
}
body {
    background-color: #F4F1DE; 
}
hr {
    width: 800px;
    margin: auto;
}

* {
    padding: 0;
    margin: 0;
}

.gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 2000px;
    margin: 0 auto;
    padding: 20px 10px;
}

.gallery img {
    width: 100%;
    max-width: 450px;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.imageDescription {
    text-align: left;
    width:fit-content;
    font-family: "Bebas Neue", sans-serif;
}

img:hover {
    transform:scale(1.5);
}

.imageContainer {
    flex: 0 0 100%;
    max-width: fit-content;
}



/* text elements */
h1 {
    text-align:left;
    background-color: #3D405B;
    margin-bottom: 25px;
    border-bottom: 3px solid #F4F1DE;
    color: #81B29A;
    font-family: "Bebas Neue", sans-serif;
    border-bottom-left-radius: 10%;
}

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 55px;
    color: #3D405B;
}

h3{
    text-align: left;
    margin-left: 25%;
    font-family: "Bebas Neue", sans-serif;
    font-size: 40px;
    color: #3D405B;
}

.bio {
    text-align: left;
    margin: 10px 25% 10% 25%;
    font-size: 25px;
    font-family: serif;
}

/* links */
a {
    text-decoration: none;
    color:#3D405B
}
a:visited {
    color: #3D405B;
}

a:hover {
    color:#E07A5F;
}

a:active {
    color: #F4F1DE;
}

.homeButton {
    background-color: #F2CC8F;
    margin: 25px 45% 200px 45%;
    font-size: 36px;
    padding: auto;
    border-radius: 5%;
    font-family: "Bebas Neue", sans-serif;
}

/* Image */ 

.portrait {
    max-height: 500px;
    max-width: 300px;
    margin-left: 25%;
    margin-right: 15px;
    float:inline-start;
    border: 3px solid #3D405B;
    border-radius: 5%;
}