#index-hero {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero-highlight {
    color: var(--color-brand-100)
}

.hero-decor-wrapper {
    overflow: visible; 
    width: auto;
}

.hero-vibes {
    position: absolute;
    overflow: visible;
    width: 76vw;
}

#degree {
    animation: MoveUpDown1 1s linear infinite;
    margin-left: -100%;
    margin-top: 6%;
    width: 16vmax;
    rotate: -8deg;
}

#bucket {
    animation: MoveUpDown1 1s linear infinite;
    margin-left: 76%;
    width: 18vmax;
    margin-top: -12%;
}

#book {
    animation: MoveUpDown2 1s linear infinite;
    margin-left: 4%;
    margin-top: 12%;
    width: 20vmax;
}

.hero-header-scroll {
    margin-top: 6vh;
    margin-bottom: 8vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-header-img {
    width: 100%;
    border-radius: 1rem;
    display: flex;
    margin-bottom: 7vh;
}

.hero-header-img img{
    width: 100%;
}

@media screen and (max-width: 768px) {
    #index-hero {
        width: 100vw;
    }
    .hero-vibes {
        display: none;
    }
    .hero-header-img {
        display: none;
    }
}

#index-hero h1 {
    margin-top: 8vh;
    text-align: center;
}

#index-hero h5 {
    margin-top: 4vh;
}

#index-hero.section-content {
    margin-bottom: 0px;
}

#experience-title {
    color: var(--color-brand-100);
}

#experience-company {
    color: var(--color-brand-40)
}

#experience-wrapper {
    display: flex;
    flex-direction: row;
    margin-top: 4.6vmin;
}

#experience {
    margin-right: 4vmax;
}

#experience h4 {
    text-transform: uppercase;
}

#section-content div {
    margin-bottom: 6vmin;
}

#subtitle-smaller {
    margin-left: 1vmax;
}

#project-wrapper {
    margin-bottom: 4.6vmin;
}

#project {
    padding: 1.25rem;
    border-radius: 1.2rem;
    margin-top: 4.6vmin;
    padding-bottom: 1vmax;
    transition: 0.4s;
}

#project:hover {
    transition: 0.4s;
    background-color: var(--color-background-secondary);
}

#project-title, #project-title-wrapper {
    display: flex;
    overflow: hidden;
    align-items: center;
}

#project-title h5 {
    margin-left: 1vw;
}

#project-title-wrapper {
    justify-content: space-between;
    margin: 1vmax;
    margin-top: 1.5vmax;
}

#project-img {
    overflow: hidden;
    border-radius: 1rem;
    display: flex;
}

#project-img img {
    width: 76vw;
    height: 56vh;
    object-fit: cover;
    transition: transform 0.75s;
}

#project-img img:hover {
    transition: transform 0.75s;
    transform: scale(1.1);

}

#project-small-wrapper {
    display: flex;
    width: 76vw;
    justify-content: space-between;
    margin-top: 7vmin;
    margin-left: 1vmax;
}

#project-small {
    width: 49.5%;
}

#project-small-title-wrapper {
    flex-direction: column;
    margin: 1vw;
}

#project-small-subtitle {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5vmax;
}

#project-title h4 {
    margin-left: 0.5rem;
}

.highlight-wrapper {
    display: flex;
    margin: 1vmax;

}

.highlight {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 100rem;
    background-color: var(--color-brand-10);
    color: var(--color-brand-100);
    margin-right: 0.5rem;
}

.highlight h6 {
    font-weight: 520;
}

#message {
    margin-top: 6vmin;
    margin-left: 1vw;
    width: 73vw;
    padding: 1.25rem;
    border-radius: 1.2rem;
    display: flex;
    background-color: var(--color-background-secondary);
    border: 0.2rem solid var(--color-brand-10);
}

#message img {
    margin-right: 1.25rem;
}

#message-title h3 {
    color: var(--color-brand-100);
}

#message-title h5 {
    margin-top: 0.25rem;
    color: var(--color-brand-40)
}

