* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Kleuren */
:root {
  --body-color: #e4e9f7;
  --nav-color: #79bc8e;
  --side-nav: #010718;
  --text-color: #fff;
}

body {
  height: 100vh;
  background-color: var(--body-color);
}

/* Navigatiebalk */
nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 70px;
  width: 100%;
  background-color: var(--nav-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

nav .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}

.nav-bar .logo a {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
}

.nav-bar .nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-bar .nav-links li {
  list-style: none;
}

.nav-links li a {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #dce3ff;
}

.nav-links li a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--text-color);
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links li:hover a::before {
  opacity: 1;
}

#clock-container{
  margin: 0;
  line-height: 1;
  padding: 0;
  width: 6%;
  height: 7%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(240, 248, 255, 0.147);
  text-align: center;
  border-radius: 12px;
  position: absolute;
  left: 3rem;
  top: 7%;
  transform: translateY(-80%);
  color: aliceblue;
}


#time{
    text-align: center;
    align-items: center;
}

b{
    color: #80BA26;
}