* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(#8ad7ff, #e6f7ff);
  height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard {
  width: 90%;
  max-width: 1000px;
  background: linear-gradient(#ccefff, #f5fcff);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

/* TOP GRID */


.tile img {
  width: 40%;
  margin-bottom: 6px;
}

/* TIMER SECTION */
.timer {
  margin: 20px 0;
  text-align: center;
  font-size: 28px;
  letter-spacing: 2px;
  color: #666;
}

/* BOTTOM BAR */
.bottom {
  margin-top: 300px;
  align-items: center;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9f5ff;
  border: 2px solid #cde8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
}

.bottomFrm {
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}

body {
  background-image: url('BackgroundDef.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}