*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}
#particles-js{
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(88, 22, 224), rgb(243, 48, 145));
}

p{
    display: block;
}

.text{
    color: rgb(250 255 27);
    font-size: 30px;
}
div{
    text-align: center;
    justify-content: center;
    justify-content: center;
}

.linker{
    font-size: 20px;
    color: red;
}

button{
    width: 50px;
    height: 50px;
    display: inline;
}
h1 button h6{
    font-size: 35px;

}

h1{
    justify-self: center;
    color: rgba(0, 0, 0, 1);
    font-size: 75px;
} 

.zone {
    cursor:pointer;
    color:#FFF;
    font-size:2em;
    border-radius:4px;
    border:1px solid #bbb;
    transition: all 0.3s linear;
}

.zone:hover {
    -webkit-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
    -moz-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
    -o-box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
    box-shadow:rgba(0,0,0,0.8) 0px 5px 15px, inset rgba(0,0,0,0.15) 0px -10px 20px;
}

.sticky{
    position: fixed;
    top: 0;
    width: 100%;
}

/* nav bar styles  */
.main-nev{
    display: flex;
    list-style: none;
    font-size: 0.7em;
    margin: 0;
}
@media only screen and (max-width: 600px) {/*these are called maedia quieries. screec shows we want to use it for the screen. the other part is similar to a condition wich means: if the condition is met (if size of screen <= 600) the code inside can be used*/
    .main-nev{
        font-size: 0.5em;
        padding: 0;
    }
}

.push{
    margin-left: auto;
}
.pull{
    margin-right: auto;
}

li{
    padding: 20px;
}

.container{
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: 70px;
    overflow-y: scroll;
    height: 300px;
}
a{
    color: #f5f5f6;
}

::-webkit-scrollbar {
    width: 20px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
  }