@import url('fonts.css');

/* Nav Bar Settings */
nav {
    position: fixed;
    top: 15px;
    width: 100%;
    z-index: 1000;
    font-family: 'Helvetica';
    font-weight: 100;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(21, 21, 21, 0.5);
    box-shadow: 5px 5px 10px rgba(21, 21, 21, 0.3);
    height: 50px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

nav ul li {
    padding: 1rem;
    transition: opacity 0.3s ease-in-out;
}

nav ul:first-child {
    padding-left: 20px;
}

nav ul:last-child {
    padding-right: 20px;
}

nav ul li:hover {
    opacity: 0.3;
}

a {
    color: white;
    text-decoration: none;
}

/* End of Nav Bar Settings */