@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600&display=swap');

html {
    scroll-behavior: smooth;
}

/* Reset default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: 'Lora', serif;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name {
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
}
  
nav ul {
    list-style: none;
    display: flex;
}
  
nav ul li {
    margin-left: 20px;
    font-size: 1.2em;
}
  
nav ul li:first-child {
    margin-left: 0;
}
  
nav ul li a {
    text-decoration: none;
    color: #fff;
}

nav ul li a.active {
    text-decoration: none;
    color: #a7a5a5;
}

nav ul li a:hover {
    text-decoration: none;
    color: #bcbcbc;
}