body {
  font-family: "Work Sans", sans-serif;
}
* {
  margin: 0rem;
  padding: 0rem;
}
#nav {
  text-align: right;
}
.bg {
  background-color: cornflowerblue;
  border-radius: 1rem;
  color: white;
}

.link {
  text-decoration: none;
  padding: 0.5rem;
  color: white;
}
.nav-bg {
  background-color: cornflowerblue;
  padding: 1rem 0.8rem;
}
.center {
  text-align: center;
}
.margin {
  margin: 1rem;
}
.margin-bottom {
  margin-bottom: 2rem;
}
.margin-top {
  margin-top: 1.5rem;
}
.label-center {
  display: block;
  text-align: center;
}
.text {
  color: white;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}
.nav-text {
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: larger;
}

.active {
  text-decoration: underline;
}
.input {
  border-radius: 0.6rem;
  height: 2rem;
  text-align: center;
}
.button {
  background-color: cornflowerblue;
  color: white;
  border-radius: 1rem;
  padding: 0.4rem 0.8rem;
  font-size: 1.1rem;
}
button:hover {
  background-color: darkblue;
  cursor: pointer;
  color: white;
  font-size: 1rem;
}
label {
  font-size: larger;
}
.message {
  font-size: x-large;
}
img {
  width: 3%;
  height: 3%;
}
@media (max-width: 600px) {
  img {
    width: 10%;
    height: 10%;
  }
  .nav-text {
    font-size: small;
  }
  .sm-padding {
    padding: 0rem 1rem;
  }
}
