html {
  font-size: 100%;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #444;
  line-height: 1.9;
  background-color: #f3f3f3;
}

/* HEADER */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 9rem;
  width: 100%;
  background-color: rgb(0, 238, 255);
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav__item {
  margin-left: 4rem;
}

.nav__link:link,
.nav__link:visited {
  font-size: 1.7rem;
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  display: block;
  transition: all 0.3s;
}

.nav__link--btn:link,
.nav__link--btn:visited {
  padding: 0.8rem 2.5rem;
  border-radius: 3rem;
  background-color: var(--color-primary);
  color: #222;
}

.search__bar {
  display: flex;
  align-items: center;
}
.header {
  padding: 3rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.main__container {
  padding: 10rem;
}

.card__container {
  border: 1px solid;
  position: relative;
  /* display: flex; */
  min-width: 0px;
  word-wrap: break-word;
  background-clip: border-box;
  border-radius: 0.25rem;
}
span {
  margin: 0 10px;
}

.textbox {
  min-height: 200px;
}

.btn-block {
  margin-top: 20px;
  text-align: center;
}
button {
  width: 150px;
  padding: 10px;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #004c85;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}

.question {
  font-size: 30px;
}

.card
  .card-action
  a:not(.btn):not(.btn-large):not(.btn-small):not(.btn-large):not(.btn-floating) {
  color: #004c85;
}

h1 {
  font-weight: bold;
}
