body {
    background-color: grey;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "Poppins";
    width: 100%;
    height: 100%;
}
.link {
    color: black;
    font-weight: bold;
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0px;
    margin-left: 12px;
    border-radius: 2px;
    margin-top: 0px;
}
.title {
    background-color: violet;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    border-top: 2px;
}
h1 {
    text-align: left;
    font-size: 55px;
    margin-bottom: 0px;
}
.track {
    text-align: left;
    margin-top: 0px;
    font-size: 17px;
    margin-bottom: 0px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav {
    text-decoration: none;
    color: black;
}
/* Reset spacing and box sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Make all link states black */
a,
a:visited,
a:active {
    color: black;
    text-decoration: none;
}

/* Optional: add spacing and hover effect */
a:hover {
    color: purple;
}

/* Example: make your nav horizontal */
.link {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 10px;
}
.hero {
    background-image: url("https://images.unsplash.com/photo-1588776814546-ec7b4b2fd1aa?auto=format&fit=crop&w=1400&q=80");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.add-entry {
    background-color: #f5f5f5;
    padding: 30px 20px;
    margin: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Poppins", sans-serif;
}

.add-entry h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.add-entry form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.add-entry input,
.add-entry select,
.add-entry button {
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.add-entry button {
    background-color: purple;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-entry button:hover {
    background-color: #6b21a8;
}
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    margin-top: 50px;
}
.name {
    font-size: 34px;
    font-family: "orbitron";
    color: black;
    font-weight: bold;
    text-align: center;
}
