
body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    background-color: #f8f8f8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
}

.text-mono {
    font-family: monospace;
}

.font-normal {
    font-weight: 400;
}

.font-light {
    font-weight: 300;
}

.content-section {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.cursor-pointer {
    cursor: pointer;
}

.rounded-img {
    border-radius: 1rem;
}

.bg-transparent-blur {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.splash-container {
    position: relative;
    /*top: 0;*/
    /*left: 0;*/
}

.filler-navbar {
    color: white;
    padding: 16px;
}

.splash-text-container {
    border-radius: 10px;
    /*box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.98);*/
    padding: 5px;
}

.splash-text-container > div {
    border-radius: 10px;
    /*background-color: rgba(255, 255, 255, 0.98);*/
    padding: 20px;
    color: white;
}

.circle-img-container {
    border-radius: 1000px;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.98);
    padding: 4px;
}

.circle-img {
    border-radius: 1000px;
}

/* Animation to fade in from the left when in view */

.fade-in-section {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 1s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}


.block-left {
    border-left: 2px solid #d9d9d9;
    padding-left: 10px;
}

.block-right {
    border-right: 2px solid #d9d9d9;
    padding-right: 10px;
}

.tech-div {
    display: flex;
    flex-direction: row;
    justify-content: start;
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
}

.tech-div > img {
    height: 25px;
    margin-right: 5px;
}

.tech-div > span {
    margin-left: 5px;
    font-weight: 600;
}

.carousel-img {
    aspect-ratio: auto;
}

.trash-red {
    color: #f58686;
}