
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0px;
  font-family: arimo;
 
}

.container {
  display: flex;
  flex-direction: column;

}

.header {
  background-color: #030027;

  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  
 
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.footer {
  background-color: #030027;
  margin-top: auto;
  font-size: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
}

.date-section {
  
  padding-bottom: 3rem;
}

input {
  padding: 0.3rem;
  font-size: 1.6rem;
  font-family: arimo;
  width: 10rem;
  color: grey;
}

input:focus {
  border: 0.15rem solid #1063ff;
  outline: none;
}

select {
  padding: 0.3rem;
  font-size: 1.6rem;
  font-family: arimo;
  color: grey;
}
select:focus {
  outline: none;
  border: 0.15rem solid #1063ff;
}

.button-section {
 
  display: flex;
  justify-content: center;
}

button {
  border: none;
  padding: 0.8rem;
  background-color: #2f004f;
  border-radius: 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 1.4rem;
  transition: transform ease 0.2s;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

button:active {
  transform: scale(0.9);
  border: none;
}

button:focus {
  outline: none;
}

.result-section {
  font-family: "arimo", cursive;
  color: #ac10ff;
  padding-top: 2rem;
  font-size: 3rem;
  opacity: 0;
}

.result-section.show {
  opacity: 1;
}