body{
    margin: 0%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fef9ff;
}
body a{
    text-decoration: none;
}

.heading {
    display :flex;
    gap: 0;
    position: relative;
    margin: 0%;
}
.heading img{
      margin: 0%;
      width: 25%;
}
.heading div{
    position: absolute;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.5);
}
.heading h1 {
    text-align: center;
    vertical-align: middle;
    font-size: 5rem;
    color: #fcf3ff;
}
.heading h2 {
    text-align: center;
    vertical-align: middle;
    font-size: 2rem;
    color: #fcf3ff;
    opacity: 90%;
}


.toolbar {
  z-index: 2;
  position: sticky;
  top: 0;
  padding: 10px 16px;
  background: #545356;
  color: #fcf3ff;
  display: flex;
}
.toolbar a{
    margin: 5px;
    padding: 10px;
    color:#f1f1f1
}

.title{
    width: 98%;
    padding: 1%;
    text-align: center;
    font-size: 30pt;
}
.subtitle{
    width: 98%;
    padding: 1%;
    text-align: center;
    font-size: 20pt;
    font-style: italic;
    color: #333;
}

.row{
    display: flex;
    width: 100%;
}
.row div{
    flex-grow: calc(var(--w) / var(--h));
    width: 0;
    margin: 5px;
    padding: 10px;
}
.row img{
    width: 100%;
}
.row p{
    margin: 20px;
    padding: 40px;
}
.about{
    width: 80%;
    margin-left: 10%;
}
.rowAbout{
    display: flex;
    width: 100%;
}
.rowAbout div{
    margin: 10px;
    padding: 20px;
    width: auto;
}
.rowAbout img{
    width: 100%;
}
.faceCard{
    width:0;
    flex-grow: 2;
}
.speech{
    margin: 10px;
    padding: 20px;
    width: 0;
    flex-grow: 1;
    text-align: justify;
}

.about-plus{
    width: 70%;
    margin-left: 15%;
    
}
.about_full{
    width: 100%;
    display: flex;
}
.about_image{
    width: 0px;
    flex-grow: 1;
}

.about_image img{
    width: 100%;
}

.about_speech{
    margin: 10px;
    padding: 20px;
    width: 3000px;
    flex-grow: 6;
    text-align: justify;
    font-size: 15pt;
}

.gallery{
    width: 80%;
    margin-left: 10%;
}
.gallery h1{
    width: 100%;
    text-align: center;
}

.portfolio{
    width: 80%;
    margin-left: 10%;
}

.portfolio-full{
    width: 90%;
    margin-left: 5%;
}

.portfolio h1{
    width: 100%;
    text-align: center;
}

.portfolio-chunk{
    display: flex;
    width:80%;
    margin-left: 7.5%;
}
.image-left img{
    width:60%;
    padding: 20px;
    float: left;
}
.image-left-mini img{
    width:50%;
    padding: 20px;
    float: left;
}
.image-right img{
    width:60%;
    padding: 20px;
    float: right;
}
.image-right-mini img{
    width:50%;
    padding: 20px;
    float: right;
}
.portfolio-text{
    width: 100%;
    padding: 40px;
    font-size: 15pt;
}
.portfolio-list{
    width: 100%;
    padding: 80px;
    font-size: 20pt;
}
.footer {
    display: flex;
    padding: 10px;
    background-color: #102;
    color:white;
}

.footer div {
    width: 30%;
    align-self: right;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: right;
}
.footer a{
    color: white;
}



/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #000000;
  margin: auto;
  padding: 0;
  width: 50%;
}

/* The Close Button */
.close {
  color: red;
  position: absolute;
  bottom: 50%;
  right: 20%;
  font-size: 50px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #900;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}