/* .body{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    align-content: space-around;
} */
body {
  min-height: 100vh;
  margin: 0;
  padding: 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;

  background: linear-gradient(135deg, #f6f7fb, #e9ecf5);
  font-family: "Poppins", sans-serif;

    min-height: 100vh;
    background: url("../img/river.jpg") center / cover no-repeat;

}


.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 24px;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
}


.header {
  font-size: 48px;
  font-weight: 700;
  margin: 24px 0 8px;
  text-align: center;
}


.clock,
.taskBar{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 12px;
}

.right-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
}

.intervalContainer {
  width: 320px;
  text-align: center;
}

.timerOptions {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.intervals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.interval {
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 18px;
  background: #f1f3f9;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.interval:hover {
  background: #e0e5ff;
  transform: translateY(-2px);
}

.taskBar{
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid;
    min-height: 8em;
    max-height: 12em;
    min-width: 16em;
    max-width: 24em;
    margin-top: 16px;
}


.clock{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 6em;
    min-width: 6em;
    padding: 16px;
    font-size: 48px;
    border: solid;
}

#demo {
  font-size: 56px;
  font-weight: bold;
  margin: 12px 0;
}
