/* ### Imports ### */
@import 'home.css';
@import 'analysis.css';
@import 'survey.css';
@font-face {
  font-family: "Yanone";
  src: url("../fonts/YanoneKaffeesatz-Regular.ttf");
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf");
}
/* ### Styles ### */
body {
  background-color: #432b88;
  color: white;
  font-family: "Poppins";
  padding-top: 4.5em;
}

.navbar {
  background: linear-gradient(90deg, #563c9f 0%, #432b88 100%);
  height: 4.5em;
}

.navbar-brand img {
  height: 1.5em;
}

.navbar-collapse {
  align-items: center;
  justify-content: space-between;
  height: 4.5em;
}

.btn-login {
  color: white;
  background-color: #7762b9;
  width: 6.5em;
}

.btn-signup {
  color: white;
  background-color: #37d247;
  width: 6.5em;
}

h4 {
  padding: 0.5em !important;
  text-align: center;
}

/* ### Navbar link hover effect ### */
.hover-link::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  top: 5px;
  transition: all 0.2s;
}

.hover-link:hover::after {
  width: 100%;
  background: white;
}