/* CSS Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
  font-family: 'Poppins', sans-serif;
  line-height: 16px;
}

body {
  background: #1a1a2e;
}

/* App Container  */
div#container {
  width: 100%;
  max-width: 500px;
  margin: auto auto;
  height: 100vh;
  padding: 10px;
}

/* App Centering  */
div#centering {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Page Heading  */
h2 {
  color: #e94560;
  font-family: 'Staatliches', cursive;
  font-size: 16px;
  font-size: 43px;
  text-align: center;
  margin-bottom: 50px;
  line-height: 25px;
}

/* Monday Friday Textv */
.outcome {
  color: #e94560;
  font-family: 'Staatliches', cursive;
  font-size: 25px;

  text-align: center;
  margin-bottom: 10px;
  line-height: 25px;
}

/* Date Picker Container */
.datepicker {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 2px solid #e94560;
  padding: 10px;
  position: relative;
}

/* Date Selector  */
.datepicker #date {
  text-align: center;
  background: #1a1a2e;
  margin-top: 5px;
  border: none;
  width: 110px;
}

/* Remove Default Focus Effects */
.datepicker #date:focus-visible {
  outline: none;
  border: none;
}

/* Alter Calendar Icon  */
input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(1);
  margin: 0;
  padding: 0;
}

/* Date Picker Label  */
label {
  position: absolute;
  background: #1a1a2e;
  padding: 0 5px;
  top: 0;
  margin-top: -10px;
  color: #e94560;
}

/* Outcome Container  */
#answer {
  margin-top: 50px;
}

/* Outcome Container Animation Class */
.animate {
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/* On Off Text Modify  */
b {
  color: white;
  font-family: 'Staatliches', cursive;
  font-weight: 500;
}

/* Animations */
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
