* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* for header */
header {
    /* background-color: #111; */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);

} 
header .title {
    display: flex;
    align-items: center;
}

header .title img {
    height: 120px;   /* Adjust size */
    width: auto;
}
nav  .elements{
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px;
} 

nav .contents a{
    padding: 0.7em 1em;
    display: flex;
    align-items: center;
    background-color: none;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}

nav div a:hover{
    color: #111;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size:smaller;
    background-color: #fff;
}
