.btn-group {
    width: 80%;
    margin: 4rem 10%;
    height: 5vh;
    box-shadow: 0 0.4rem 0.8rem black;
}

.project-type-selection-button, .project-type-selection-button:hover {
    color: var(--text-primary);
    background-color: var(--skills-badge-bg);
}

.project-type-selection-button:hover {
    transform: scale(1.04);
}

.project-container {
    position: relative;
    width: 80vw;
    height: 60vh;
    left: 10vw;
    background-color: var(--skills-badge-bg);
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-between;
    border-radius: 2rem;
    box-shadow: 0px 15px 40px rgba(0,0,0,0.7);
}

.project-container:hover {
    transform: translateY(-0.1rem);
}

.side-container {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.title-text {
    color: var(--text-primary);
    margin-top: 2rem;
}

.paragraph-text {
    margin-top: 2rem;
    color: var(--text-secondary);
    margin-left: 2rem;
}

.project-image-with-link {
    max-width: 90%;
    max-height: 70%;
    width: auto;
    height: auto;
    margin-top: 3rem;
    border-radius: 2rem;
    border: 0.2rem solid black;
    box-shadow: 0 0.2rem 1.0rem black;
}

.project-image-without-link {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    margin: 1.5rem;
    border-radius: 2rem;
    border: 0.2rem solid black;
    box-shadow: 0 0.5rem 1.5rem black;
}

.project-link {
    margin-top: 2rem;
    background-color: var(--accent);
    box-shadow: 0 0.1rem 0.5rem black;
}

.project-link:hover {
    background-color: var(--accent-hover);
}

.fa-diagram-project {
    margin-right: 1rem;
}


