.split.element-background-box {
    display: flex;
}

.split.element-background-box .left {
    width: 50%;
    margin-right: 15px;
}

.split.element-background-box .right {
    width: 50%;
}
  
/* Mobile */
@media only screen and (max-width: 701px) {
    .split.element-background-box {
        flex-direction: column-reverse;
    }
    .split.element-background-box .left {
        width: 100%;
        margin-top: 15px;
        margin-right: 0;
    }
    .split.element-background-box .right {
        width: 100%;
    }
}

li {
    margin-top: 5px;
}

/* ul {
    line-height: 2;
} */

.project-name {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-radius: 20px;
    
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;

    margin-bottom: 15px;

    font-size: x-large;
    font-weight: 600;
    text-align: center;
}

.project-picture {
    border-radius: 25px;;
    padding: 15px;

    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);

    line-height: 0;
}

.project-picture img {
    border-radius: 15px;
}

@media (prefers-color-scheme: dark) {
    .project-name {
        background-color: rgba(150, 150, 150, 0.3);
    }

    .project-picture {
        background-color: rgba(150, 150, 150, 0.3);
    }
}

.project-summary .text {
    margin-top: 8px;
}

.project-summary .text:first-of-type {
    margin-top: 0;
}

.summary-property {
    /* background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05); */
    font-weight: 500;
    border-radius: 12px;

    /* padding-left: 12px;
    padding-right: 12px; */
    padding-top: 4px;
    padding-bottom: 4px;
    display: flex;

    margin-top: 3px;

    transition: background-color 250ms ease;
}

/* a.summary-property:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

@media (prefers-color-scheme: dark) {
    a.summary-property:hover {
        background-color: rgba(150, 150, 150, 0.3);
    }
} */

.btn-summary {
    width: 100%;
    border-radius: 12px;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 9px;
    padding-bottom: 9px;

    margin-top: 6px;

    font-size: 0.95rem;
    background-size: 200% auto;
    background-image: linear-gradient(to right, rgb(124, 98, 235) 0%, rgb(152, 128, 239) 50%);
    transition: 0.5s;
  }
  
.btn-summary:hover {
    background-position: right center;
}

/* Mobile */
@media only screen and (max-width: 500px) {
    .btn-summary {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

.summary-property div:first-child {
    font-weight: 700;
    margin-right: 6px;
}

.image-container {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);

    border-radius: 25px;
    padding: 15px;
    margin-top: 15px;
    line-height: 0;

    margin-bottom: 15px;
}

.image-container:last-child {
    margin-bottom: 0;
}

/* image-container on dektop */
@media only screen and (min-width: 800px) {
    .image-container {
        width: 75%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (prefers-color-scheme: dark) {
    .image-container {
        background-color: rgba(150, 150, 150, 0.3);
    }
}

.image-container img {
    width: 100%;
    border-radius: 15px;
    cursor: pointer;
}

.image-container .text {
    margin-top: 15px;
    text-align: center;
    line-height: 1.6;
}


/* Responsibilities Box */
.responsibility {
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.responsibility:last-child {
    margin-bottom: 0;
}

@media (prefers-color-scheme: dark) {
    .responsibility {
        background-color: rgba(150, 150, 150, 0.3);
    }
}

.responsibility .text {
    font-weight: 600 !important;
}

.responsibility .icon {
    width: 35px;
    min-width: 35px;
    height: 35px;
    min-height: 35px;
    padding-top: 19px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.075);
    text-align: center;
    line-height: 0 !important;
    margin-right: 10px;
    font-size: 1.3rem;
}

@media (prefers-color-scheme: dark) {
    .responsibility .icon {
        background-color: rgba(150, 150, 150, 0.4) !important;
    }
}

.responsibility .icon.green {
    background-color: rgba(211, 241, 221, 1);
}

.responsibility .icon.blue {
    background-color: rgba(214, 233, 248, 1);
}

.responsibility .icon.red {
    background-color: rgba(248, 214, 214, 1);
}



.responsibility .icon.up-1 {
    padding-top: 18px;
}

.responsibility .icon.up-2 {
    padding-top: 17px;
}

.responsibility .icon.up-3 {
    padding-top: 16px;
}

.responsibility .text {
    font-weight: 500;
}

.techandtools {
    margin-bottom: -5px;
}

.techandtools div {
    border: 1px solid rgba(0, 0, 0, 0.2);

    border-radius: 12px;

    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 2px;

    margin-bottom: 5px;

    display: inline-block;
}

@media (prefers-color-scheme: dark) {
    .techandtools div {
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}