/* #background{
    background-image: url("../img/background/graph-js.png");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: auto cover;
    background-position-y: 0px;
}

body,html{
    height: 100%;
}

@media (max-width: 1199px) {
    #background{
        background-image: url("../img/background/Mountains.png");
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-position-x: center;
        background-size: 3600px 3500px;
    }  
}*/

.images{
    display: flex;
}

.images.container{
    margin: 10px;
    flex-basis: calc(25% -20px);
}

.image {
    width: 100%;
    max-width: 200px;
    height: auto;
    transform: scale(100%);
    transition: all 0.5s;
}

.container:nth-child(2){
    transition-delay: 200ms;
}
.container:nth-child(3){
    transition-delay: 600ms;
}
.container:nth-child(4){
    transition-delay: 1000ms;
}
.container:nth-child(5){
    transition-delay: 1400ms;
}

.image:hover {
    transform: scale(110%);
}

.timeline-point {
    position: absolute;
    padding: 0;
    height: 40px;
    width: 40px;
    background-color: var(--timeline-primary);
    top: calc(100%/2 - 15px);
    left: -80px;
    border: 10px solid var(--bg-primary);
    border-radius: 17px;
}


.timeline {
    padding: 0 10px;
    border-left: 3px solid var(--timeline-primary);
}

.hidden{
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.text {
    font-family: "Lucida Console", monospace;
    height: 10rem;
}

.gh-logo {
    height: 100%;
    width: auto;
}

.wrapper {
    position: relative;

    height: 50vh;
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bg-secondary);
    border-radius: 20px;
}

#link {
    position: absolute;

    height: 20%;
    padding: 10px;
    background-color: var(--bg-secondary);
    border-radius: 15px;

    transition: all 500ms;
    transition-timing-function: ease-out;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#wrapper:hover {
    box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
}

#link:hover {
    box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
}