* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  /* position: relative; */
}
nav {
  background: rgb(35, 3, 56);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #fff;
}
nav a {
  text-decoration: none;
  color: white;
}
header {
  /* height: 100vh; */
  margin: 1rem auto;
  text-align: center;
  padding: 1rem auto;
}
header h2 {
  margin: 1.5rem auto;
}
.pages {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.pages a {
  text-decoration: none;
  background: rgb(35, 3, 56);
  width: 200px;
  font-size: 20px;
  padding: 15px;
  color: white;
  border-radius: 15px;
}
.pages a:hover {
  background: rgb(144, 22, 226);
}

header{
  /* position: relative; */
  min-height: 90vh;
}

.footer {
  position:sticky;
  width: 100%;
  /* position: absolute; */
  left: 0;
  bottom: -50px;
  background-color: rgb(35, 3, 56);
  color: white;
  /* border-top-right-radius: 1rem; */
  padding-bottom: 1px;
}
.footer-heading {
  padding-top: 10px;
  text-align: center;
  font-weight: bolder;
}
.footer-list {
  list-style: none;
  text-align: center;
  padding-inline-start: 0px;
}
.footer-item {
  display: inline-block;
  padding: 1rem 1rem;
}
.footer-link {
  text-decoration: none;
  color: white;
  font-weight: normal;
  border-radius: 8rem;
}
.footer-link:hover {
  box-shadow: 2px 2px 5px black;
}

/* checkAngles page styling */
.container,
.inputs {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  gap: 15px;
}
/* header h2 {
  padding: 2rem auto;
} */
header a {
  text-decoration: none;
  background: rgb(35, 3, 56);
  width: 140px;
  font-size: 18px;
  padding: 15px;
  color: white;
  border-radius: 15px;
}
header a:hover {
  background: rgb(144, 22, 226);
}
.inputs input {
  width: 190px;
  padding: 5px;
  outline: none;
  border: 2px solid black;
  border-radius: 5px;
}
button {
  outline: none;
  border: none;
  color: white;
  font-size: 20px;
  background: rgb(35, 3, 56);
  padding: 5px;
  border-radius: 5px;
}
button:hover {
  cursor: pointer;
}

/* checkArea functionality */
.radio {
  display: flex;
}
.form {
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
form{
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  gap: 10px;
}
.area-header {
  height: 100vh;
}

.form {
  display: none;
}

/* checkHypo styling */
.hypo-container, .quiz-container{
  margin:2rem auto;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items:center;
  gap: 10px;
}

/* quiz styling */
.quiz-card{
  width:80%;
  display: flex;
  flex-direction: column;
  gap:10px;
  border:2px solid black;
  padding:20px;
  border-radius:8px;
}
