#description {
    background-color: white;
    font-size: 1.1em;
    padding-top: 80px;
    padding-bottom: 80px;
}

.col-md-6 {
    margin-bottom: 10px; 
    padding-right: 5px;
    padding-left: 5px;
}

.path {
    stroke-dasharray: 50000;
    stroke-dashoffset: 50000;
    animation: dash 10s linear infinite alternate;
}
svg {
    width: 150px;
    height: 150px;
}
@keyframes dash {
    from {
      stroke-dashoffset: 50000;
    }
    to {
      stroke-dashoffset: 0;
    }
  }

  a, a:hover, a:active, a:focus {
    color: #945fbb;
}
.section-title {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px;
    background: white;
    width: 100px;
    text-align: center;
}
.miniapp-section {
    background: #6f6378;
    height:100px; 
    padding:0;
    overflow: hidden;
}
.miniapp-section>a {
    display: inline-block;
    margin-bottom: 3px;
}
.miniapp-section>a:hover {
    text-decoration: none;
}
.miniapp-section>a>img {
    opacity: 0.5;
}
.miniapp-section>a>img:hover {
    opacity: 1;
}
#main-card-container {
    margin-top: -80px;
}
.main-card {
    border-color: transparent;
    box-shadow: 2px 2px 5px 3px rgba(0,0,0,.15);
    border-radius: 8px;
}
.item-project {
    display: flex;
    margin-bottom: 16px;
}
.item-project .image {
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    margin-right: 16px;
    background-color: #eeeeee;
}
.item-project .image.blank {
    background-color: transparent;
}
.item-project .image.blank.rafflesia {
    background-color: #673ab7;
}
.item-project .image>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.item-project .title {
    font-weight: bold;
    margin-bottom: 4px;
}
.item-project .title>.personal {
    background-color: #663f5f;
    color: white;
    font-weight: normal;
    padding: 2px 8px;
    font-size: 10px;
    margin-left: 8px;
}
.item-project .date {
    font-size: 11px;
    color: #777;
}
.item-project .description {
    margin-top: 8px;
}
.item-project .fa {
    margin-left: 16px;
    margin-right: 4px;
}
.item-project .labels>.lab {
    margin-right: 4px;
}