*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

/* particles styles */
#particles-js{
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(88, 22, 224), rgb(243, 48, 145));
}

/* normal styles */
.container{
    justify-content: center;
    justify-items: center;
    align-items: center;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
h1{
    justify-self: center;
    color: rgb(250 255 27);
    font-size: 100px;
} 
.container a{
    color: rgb(255, 4, 0);
    font-size: 50px;
}

.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;
}

a{
    color: #f5f5f6;
}



