:root {
  --text-color: white;
}

* {
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

#banner {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  color: var(--text-color);
  background-color: black;
  font-size: 3rem;
  z-index: 1000;
}

#banner.visible {
  display: flex;
  justify-content: center;
  align-items: center;
}

#prayer-times {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: var(--text-color);
  background-color: black;
  padding: 20px 0;
}

.prayer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  height: 20%;
  color: var(--text-color);
  background-color: rgb(16, 16, 16);
  padding: 0 2rem;
  margin: 10px;
  border: 2px solid rgb(32, 32, 32);
  border-radius: 10px;
}
