html {
  height: 100%;
  margin: 0;
}

body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  color: white;
  background-color: #1c1c1c;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 15px;
}

nav {
  height: 40px;
  padding: 10px 15px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  background-color: black;
}

footer {
  height: 40px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-around;
  background-color: black;
}

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

a:hover {
  text-decoration: underline;
}


.logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.login-nav-section {
  display: flex;
  flex-direction: row;
  gap: 10px;
}