html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'sans-serif';
    box-sizing: border-box;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 8%;
    background: gray;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.home {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin: 0 10px; /* Adjust the margin as needed */
    transition: 0.3s;
    font-family: 'Product Sans', 'sans-serif';
    background-color: darkgray;
    padding: 5px 10px;
    border-radius: 15px;
}

.navbar a:hover {
    color: lightgray;
}