
.navbar {
    margin: 0;
    padding: 0;

    width: 80px;
    height: 100vh;

    background-color: #05141A;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.brand {
    box-sizing: border-box;
    width: 100%;
    height: 10%;
    color: white;
    font-family: 'VT323', monospace;
    font-size: 2rem;
    text-transform: uppercase;

    display: flex;
    justify-content: center;
    align-items: center;
}

.brand img {
    width: 40px;
}

.navigation {
    width: 100%;
    height: 10%; /* change when adding new links */

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.logout {
    width: 100%;
    height: 10%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.navigation a,
.logout a {
    text-decoration: none;
    color: white;
    font-size: 1.7rem;

    transition: all 0.3s ease-in-out;
}

.navigation a:hover,
.logout a:hover {
    color: #D790B3;
}

.page-footer {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	width: 100%;
	height: 100px;
	/* background-color: #05141a; */
	/* color: #fafafa; */

	width: 80%;
	margin: 40px auto;
	padding: 0 50px;
}

.footer-control {
	transition: all 0.3s;
}

.footer-control:hover {
	cursor: pointer;
	color: #d790b3;
}