.logotype{
    font-family: 'Italiana', serif !important;
    font-size: 35px;
    font-weight: bolder;
    margin-right: 30px;
  }
  a:hover{
    color: #b9a08f !important;
  }

  body{
    /* font-family: 'Italiana', serif; */
    /* font-family: 'Dosis', sans-serif; */
    font-family: 'KoHo', sans-serif;
    /* background-color: #f6efe54f; */
    /* height: 100vh;  */
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }
  .blush {
    color: #ecded7;
  }

  .offwhite {
    color: #f3f2ed;
  }

  .ivory {
    color: #f6efe5;
  }

  .nude {
    color: #e0cec1;
  }

  .about {
    color: black;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: larger;
  }

  .background--custom {
    background-color: #FFFFFF;
    width: 100vw;
    height: 100vh;
    position: absolute;
    overflow: hidden;
    z-index: -2;
    top: 0;
    left: 0;
  }

  canvas#canvas {
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    /* translateY(-52%) */
    transform: rotate(-16deg) scale(2) translateY(-56%);;
    --gradient-color-1: #ECDED7;
    --gradient-color-2: #F3F2ED;
    --gradient-color-3: #F6EFE5;
    --gradient-color-4: #E0CEC1;
    --gradient-speed: 0.000006;
    opacity: 0;
  }

  .navbar-item{
    font-size: 22px !important;
  }

  .logotype{
    display: none !important;
  }

  .navbar-section{
    /* padding: 2rem 1.5rem; */

    /* padding-bottom: 0px; */
    /* padding-top: 1rem; */
  }

  .content-section{
    padding-top: 1rem;
  }

  .main {

  }
  
  .section {
    flex: 1;
  }

  .fixed-footer{
    position:fixed; 
    bottom:0; 
    background-color: #ecded7; 
    color:white; 
    height: 40px !important;
    width: 100%;

  }

  .fixed-logo{
    position: absolute;
    left:100px;
    top:45px;
    height: 80px;
  }


  .navbar-item img {
    max-height: fit-content;
    height: 100px;
  }
  .mainCard {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    overflow: hidden;
    transition: background-color 0.3s, color 0.3s;
}
.mainCard h1 {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  text-align: center;
  width: 100%;
}
.mainCard:hover {
  background-color: #ecded7;
  color: white;
}
.mainCard .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.mainCard .image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainCard .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  .image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

  @media screen and (max-width: 1366px) {
    .fixed-logo{
      position: absolute;
      left:40px;
      top:45px;
      height: 80px;
    }
    .profile-img{
      padding: 0;
    }
  }

  
  /* On screens that are 600px or less, set the background color to olive */
  @media screen and (max-width: 600px) {
    .columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }
  .column {
      width: 100%;
      max-width: 400px;
  }
    .fixed-logo{
      position: absolute;
      left:40px;
      top:45px;
      height: 80px;
    }
    .profile-img{
      padding: 30px;
    }
  }