body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 0;
  background-color: rgb(70, 70, 70);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  transition: background 0.5s cubic-bezier(0.4, 0, 1, 1);
  overflow: hidden;
}

body.light {
  --bg-colour: #f2f2f2;
  --text-colour: #212121;
  --shadow: rgba(110, 110, 110, 0.515);
}
body.dark {
  --bg-colour: #212121;
  --text-colour: #f2f2f2;
  --shadow: rgba(0, 0, 0, 0.735);
}

header {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  font-size: 2em;
  font-weight: bold;
}

.sidebar {
  text-align: left;
  position: fixed;
  top: 0;
  right: -300px;
  width: 200px;
  height: 100%;
  background-color: var(--bg-colour);
  padding: 14px;
  transition: right 0.3s ease-in-out;
  box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
  color: var(--text-colour);
  z-index: 900; 
  overflow-y: auto; 
}

.sidebar.active {
  right: 0;
}

/* 
Animated Menu Button
Thanks to Yago for the menu button
Project link https://codepen.io/yagoestevez/pen/oapQEJ
*/
.menu-button {
  position: absolute;
  top: 0px;
  right: 10px;
  height: 30px;
  width: 40px;
  outline: none;
  z-index: 9009;
  margin: 5px 0;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  position: absolute;
  content: '';
  width: 30px;
  height: 2px;
  background: #000000;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-button span {
  position: absolute;
  top: 20px;
  height: 2px;
  right: 2px;
  display: block;
  top: 50%;
  z-index: 9009;
  background: #212121;
}

.menu-button span::before {
  top: -8px;
  background: #212121;
  right: 0px;
}

.menu-button span::after {
  top: 8px;
  right: 0px;
  background: #212121;
}

.menu-button:hover > span,
.menu-button:hover > span::before,
.menu-button:hover > span::after {
  background: #212121;
}

.menu-button.active > span  {
  background: transparent;
}

.menu-button.active > span::before  {
  transform: rotate(-225deg);
  top: 0px;
  background-color: red;
}

.menu-button.active > span::after  {
  transform: rotate(225deg);
  top: 0px;
  background-color: red;
}

#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#menu ul li {
  padding: 18px;
  border-bottom: 1px solid #888;
}

#menu ul li:last-child {
  border-bottom: none;
}

#menu ul li a {
transition: background-color 0.2s;
  position: left;
  text-decoration: none;
  font-size: 16px;
  display: block;
  width: 100%;
  height: 100%;
  color: var(--text-colour);
}

#menu-toggle {
  display: none;
}

#menu-header {
  padding: 0px;
  text-align: left;
  font-weight: bold;
  color: var(--text-colour);
  font-weight: bold;
  font-size: 24px;
}


#menu-toggle:checked ~ #menu {
  display: block;
}

#menu-toggle:checked ~ #menu-toggle-label {
  background-color: #888;
}

#menu-toggle:checked ~ #menu-toggle-label span {
  background-color: #fff;
}
#menu ul li ul {
  display: none;
}

#menu ul li:hover > ul {
  display: block;
}    
/* Animated Menu Button END */

.countdown-container {
  display: flex;
  flex-direction: column;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  font-size: 1.5em;
  gap: 15px;
  text-align: center;
  align-items: center;
}

.subtitle {
  text-align: center;
  font-size: 1.5em;
}

.countdown {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 1.1em;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}


.label {
  font-size: 0.6em;
}
.icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.icons img {
  width: 25px;
  height: 25px;
}

.window {
  display: block;
  position: absolute;
  background-color: var(--bg-colour);
  color: var(--text-colour);
  padding: 15px;
  border-radius: 20px;
  top: calc(100vh + 300px);
  box-shadow: 5px 6px 5px rgba(43, 43, 43, 0.722);
  transition: background-color 0.3s ease, color 0.3s ease, top 0.5s ease;
}

.window h2 {
  margin: 10px 0 5px 0;
}

.window-content {
  display: flex;
  flex-direction: column;
}

.window-content select {
  background-color: var(--bg-colour);
  color: var(--text-colour);
  border-radius: 5px;
  margin-bottom: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.window-options {
  display: flex;
  flex-direction: column;
  gap: 10px;;
}

button {
  background-color: var(--bg-colour);
  color: var(--text-colour);
  border-radius: 5px;
  border: 2px solid black; 
  margin-top: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.3s ease, color 0.3s ease;
}

button:hover {
  transform: scale(1.02);
  box-shadow: 1px 5px 5px var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.user-map img {
  width: 280px;
  height: auto;
}

@media (max-width: 768px) {
}