svg {
    color: gray;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

#about {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#aboutContent {
    display: flex;
    width: 80vw;
}

.aboutContent {
    color: #ddd;
    font-size: large;
    width: 80vw;
}

.shownContentRight {
    animation: fadeInRight .3s ease-in-out forwards;
}

.shownContentLeft {
    animation: fadeInLeft .3s ease-in-out forwards
}

.hiddenRight {
    animation: fadeOutRight .3s ease-in-out forwards;

}

.hiddenLeft {
    animation: fadeOutLeft .3s ease-in-out forwards;
}

#theme {
    min-width: 10%;
    display: flex;
    justify-content: space-between;
    height: 10vh;
}

#laptopSVGPart::after {
    margin-left: 35px;
    content: '';
    position: absolute;
    background-color: gray;
    height: 50px;
    width: 1px;
}

.selected {
    color: white;
    transform: scale(1.3);
}

.illustrations {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.layer1 {
    display: flex;
    justify-content: center;
}

.layer2 {
    display: flex;
    justify-content: center;
}

.imgContainer {
    aspect-ratio: 3 / 2; 
    width: 100%;
    display: flex;
    justify-content: center;
}

.illustration {
    width: 90%;
    height: 90%;
    object-fit: cover;
    margin: 1%;
    box-shadow: 0 0 10px black;
}