body {
  /* background-color: #f0f3f5; */
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.3rem;
}

.navbar-item {
  font-family: Garamond, serif;
  /* font-weight: 600; */
  letter-spacing: 0.05em;
}

.navbar-item:hover {
  transition: all 0.2s ease-in-out;
  border-bottom: 2px solid #1f2c6c;
}

.navbar-item.is-active {
  border-bottom: 2px solid ivory;
}

.section-heading {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 2em;
}
.fix-margin {
  margin-bottom: 1.5rem;
}

.is-middled {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.align-right {
  display: flex;
  justify-content: flex-end;
}
.align-left {
  display: flex;
  justify-content: flex-start;
}
.align-center {
  margin-left: auto;
  margin-right: auto;
}
.social-icons {
  padding: 10px;
  display: flex;
  /* justify-content: center;  
  align-items: center; */
  gap: 20px;
  font-size: 1.5rem;
  
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.social-icons a {
  color: darkgrey;
}
.social-icons a:hover {
  color: black;
  transition: all 0.2s ease-in-out;
}
@media only screen and (max-width: 600px) {
  body {
    background-color: white;
    font-size: 1rem;
  }
  .navbar-burger {
    color: white;
  }

}
/*------------------------------*/
.profile-image {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 90%;
  height: auto;
  margin: auto;
  transition: all 1s linear;
}

#image0 {
  display: block;
  /* width:87%; */
}
#image1 {
  display: none;
  /* opacity: 0; */
}
#image2 {
  display: none;
  /* opacity: 0; */
}
.left-box:hover {
  cursor: pointer;
}

/*--------------------------------------------------------------*/
.stripes {
  background-image: repeating-linear-gradient(
      45deg,
      hsla(312, 0%, 63%, 0.05) 0px,
      hsla(312, 0%, 63%, 0.05) 10px,
      transparent 10px,
      transparent 100px
    ),
    repeating-linear-gradient(
      90deg,
      hsla(312, 0%, 63%, 0.05) 0px,
      hsla(312, 0%, 63%, 0.05) 50px,
      transparent 50px,
      transparent 100px
    ),
    linear-gradient(90deg, hsl(80, 0%, 20%), hsl(80, 0%, 20%));
}
.stripes-light {
  background-image: repeating-linear-gradient(
      45deg,
      hsla(312, 10%, 87%, 0.13) 0px,
      hsla(312, 10%, 87%, 0.13) 10px,
      transparent 10px,
      transparent 100px
    ),
    linear-gradient(90deg, hsl(80, 0%, 98%), hsl(80, 0%, 98%));
}

.stripes-2 {
  background-image: repeating-linear-gradient(
      90deg,
      rgba(224, 82, 67, 0.5) 0px,
      rgba(224, 82, 67, 0.5) 40px,
      transparent 40px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(224, 82, 67, 0.5) 0px,
      rgba(224, 82, 67, 0.5) 40px,
      transparent 40px,
      transparent 80px
    ),
    linear-gradient(90deg, hsl(250, 82%, 1%), hsl(250, 82%, 1%));
}
