Is there a way to reposition the about and contact links on the right side of the navigation section?
I attempted using align-items: flex-end, but it doesn't seem to have any effect.
.container {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 5px;
margin-bottom: 25px;
}
/* Navigation */
.navigation-container {
position: fixed;
top: 0;
}
.navigation-items {
display: flex;
justify-content: center;
}
.footer-items {
display: flex;
justify-content: center;
}
<!-- Container -->
<div class="container">
<!-- Navigation -->
<div class="navigation-container">
<span class="background"></span>
<!-- Results Nav-->
<span class="navigation-items" id="resultsNav">
<h3>About</h3>
<h3> • </h3>
<h3>Contact</h3>
</span>
</div>
</div>