* {
    padding: 0;
    margin: 0;
}

nav {
    height: 60px;
    width: max-content;
    background-color: rgb(254, 251, 234);
    display: flex;
    margin-bottom: 15px;
}

nav a {
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(0, 25, 25);
}

nav a:hover {
    background-color: gray;
}

.links-container {
    height: 100%;
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media print {
    body { display: none !important; }
}