
/*meeste code hier is voor die cpu dingetje*/

#achtergrond {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background-image: url("https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExNG9vMmpxZzY5YmppNXFnMHl1ZzRwZ2w0dXd3aDM4MjV6YjQ4ZTFhYyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ToMjGpyHdJiioVfdtK0/giphy.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    opacity: 0.75;
    z-index: -1;
}

.lijn{
    height: 5px;
    width: 5px;
    background-color: white;
}
.cpusocket{
    display: flex;
    height: 1000px;
    width: 1000px;
    background-color: rgb(63, 70, 63);
    justify-content: center;
    align-items: center;
    margin-top: 250px;
    flex-direction: column;
}
.cpuchip{
    display: flex;
    background-color: darkgrey;
    justify-content: center;
    align-self: center;
    align-items: center;
    font-size: xxx-large;
    height: 100%;
    width: 100%;
}

.pinleft{
    display: flex;
    background-color: gold;
    width: 8%;
    flex-direction: column-reverse;
    justify-items: center;
    align-items: center;
    justify-content: space-around;
}

.pinright{
    display: flex;
    background-color: gold;
    width: 8%;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    justify-content: space-around;
}

.pintop{
    background-color: gold;
    height: 9%;
    width: 82%;
    display: flex;
    justify-content: space-around;
    justify-items: center;
    align-items: center;
}

.pinbottom{
    background-color: gold;
    height: 9%;
    width: 82%;
    display: flex;
    justify-content: space-around;
    justify-items: center;
    align-items: center;
}


.pin{
    width: 5%;
    height: 80%;
    background-color: white;
    align-content: center;
    justify-content: center;
}

.pinzijkanten{
    display: flex;
    width: 80%;
    height: 5%;
    background-color: white;
    justify-content: space-around;
}

/*style voor de infobox hieronder*/

.infobox{
    display: flex;
    position: absolute;
    color: white; 
    flex-direction: column;
    flex-wrap: wrap;
}





/*style voor de infobox hierboven*/

/*Doruk's code hierboven, NIET AANRAKEN*/





/* text en styles en whatever hier onder chat */

.textdingetje{
    font-family: 'poppins' ,sans-serif;
    font-size: 25px;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(to right,#fc72ff, #8f68ff, #487bff, #8f68ff, #fc72ff);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-fill-mode: forwards;
    animation: animate-gradient 2.5s linear infinite;
    opacity: 1;
}
@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

/*text style dingetjes hierboven ^ */


/*uhhh website dingetjes hier???*/
.kiesmenuoud{
    display: flex;
    flex-direction: row;

    background-color: black;
    opacity: 0.4;
    color: hotpink;

    justify-content: center;
    align-items: center;

    gap: 20px;
    font-size: 35px;
    height: 75px;
}

.kiesmenunieuw{
    display: flex;
    background-color: rgba(172, 172, 190, 0.65);
    flex-direction: row;


    justify-content: center;
    align-items: center;
    position: sticky ;
    top: 0;
    
    border-radius: 12%;

    gap: 60px;
    font-size: 35px;
    height: 110px;
}

.informatieons{
    display: flex;
    background-color: white;

    justify-content: center;
    justify-content: column;
    
    color: green;

    height: 50px;
    width: 50px;


}


.voorgeschiedenispage{
    display: flex;
    

}

.indexinformatieoverons{
    display: flex;
    justify-content: space-evenly;
}

@keyframes achtergrondkleurverander{
    from {background-color: green;}
    to {background-color: greenyellow;}


}

.achtergrondcool{
    animation-name: achtergrondkleurverander;
   animation-duration: 8;
   animation-iteration-count: infinite;
   animation-timing-function: linear;
}