
/* Header and navbar */

header {
    background: #fff;
}
nav{
    display: flex;
    text-align: center;
    padding: 20px 0;
    font-size: 17px;
    max-width: 1250px;
    margin: 0 auto;
}

.sticky {
    /* margin-bottom: 100px; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 7px 0 #ced3da;
    z-index: 1000!important;
    transition: all 0.5s ease;    
}

.sticky + .container {
    padding-top: 90px;
}

.links{
    width: 70%;
    display: flex;
}

/* .logoimage{
    width: 80%;
    height: auto;
} */

.newpage{
    margin: auto 2%;
    list-style-type: none;
    font-size: 0.9em;
    font-weight: 300;
}

.newpage>a{    
    text-decoration: none;
    font-weight: 500;
    color: #0c1825;
}

.user{
    display: flex;
    margin-left: 40px;
}

.sign-in-button{
    padding: 1em;
    margin-right: 1em;
    color: #0c1825;
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: 10px;
    font-weight: 600;    
    transition: border .8s,color .8s;
    font-size: 16px;
    cursor: pointer;
}

.sign-in-button:hover{
    border: 1px solid #3457D5;
    color: #3457D5;
}

.register-button{
    padding: 1em 1.5em;
    color: #fff;
    background: #0c1825;
    transition: background-color .8s;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;  
    cursor: pointer;
}

.register-button:hover{
    border: 1px solid #3457D5;
    background: #3457D5;
}

li{
    list-style-type: none;
    margin-bottom: 20px;
}

a{
    color: #353535;
    text-decoration: none;
}
