@import url(./reset.css);

header{
    position: fixed;
    display: flex;
    align-items: center;
    border-bottom: solid .1rem rgb(16, 16, 230);
    background-color: #fff;
    z-index: 1000;
    width: 100%;
    top: 0;
}

h1{
    position: relative;
    color: rgb(16, 16, 230);
    text-align: center;
    font-weight: 500;
    line-height: 3.5rem;
    font-size: 3rem;
}
h1 span{
    color: rgb(228, 57, 57);
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 1.5rem;
}

.logo{
    width: 150px;
    left: 10px;
}

.logo img{
    width: 120px;
}

/*La navigation bar*/
.navbar{
    position: absolute;
    max-width: 960px;
    right: 30px;
}

.navbar ul{
    display: flex;
    gap: 20px;

}

.navbar ul a{
    color: #000;
    font-weight: 400;
    font-size: 1.6rem;
}

.navbar ul a:hover{
    color: rgb(96, 96, 230);
    transition: .3s ease-in-out;
}