* {font-family: Inter, sans-serif;}

body {
  background-color: white;
  color: black;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  flex-direction: column;
  display: flex;
  align-items: center;
}

#clock {
  font-size: 2em;
  padding: 20px;
  position: absolute;
  top: 120px;
  left: 20px;
  color: #f0f0f0;
  line-height: 30px;
  background-color: #222;
  border-radius: 8px;
  border: 2px solid #aaa;
}

#top-logo {
  color: #f90;
  font-size: 3em;
  text-decoration: none;
  transition: color 0.2s ease;
}

#top-logo:hover {
  color: #d60;
}

header {
  background-color: #f0f0f0;
  position: fixed;
  z-index: 10000;
  box-shadow: 0 5px 5px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  width: 100vw;
  top: 0;
  left: 0;
  margin-bottom: 75px;
}