/* Media queries */
@media (max-width: 767px) {
  h1 {
    margin: 100px 25px 50px !important;
    font-size: 35px !important;
  }

  .regular-text {
    margin: 0 15px !important;
    font-size: 17px !important;
  }

  .right-column,
  .right-column h4,
  .name,
  .roles {
    text-align: left !important;
  }
}

/* Root colors */
:root {
  --primary-color: #006aff;
  --hero-background-color: #000a44;
  --off-black-text-color: #262626;
}

/* Navigation bar */
nav {
  text-align: center;
}

.nav {
  background-color: var(--hero-background-color);
}

.nav-link {
  color: #eff6ff;
}

.navbar-brand:hover,
.nav-link:hover {
  cursor: pointer;
  transition: all 200ms ease-in;
  color: var(--primary-color);
}

.nav-active {
  color: var(--primary-color);
}

.nav-name {
  margin-left: 10px;
  color: #eff6ff;
}

/* Body */
body {
  font-family: "Gabarito", sans-serif;
  font-family: "Kanit", sans-serif;
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-wrap: break-word;
  overflow-x: hidden !important;
}

h1 {
  margin: 150px 250px 50px;
  font-size: 60px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

h2 {
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

h2.after-h1 {
  color: #000;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
}

.after-h1 {
  margin-top: 50px;
}

.h2-title {
  font-size: 25px;
  text-align: left;
  color: #000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.regular-text {
  color: #000;
  margin: 25px 250px;
  text-align: left;
}

.last-before-footer {
  margin-bottom: 60px;
}

/* Footer */
footer {
  background-color: var(--off-black-text-color);
}

footer h4 {
  margin-top: 20px;
  font-size: 20px;
  color: #fff;
}

footer .right-column {
  text-align: right;
}

.name {
  color: #5c85be;
}

.snumber {
  font-size: 14px;
}

.roles {
  color: #cacaca;
  font-style: italic;
  font-size: 12px;
}

.bottom-role {
  margin-bottom: 9px;
}

footer .footer-reg-links a,
footer .footer-reg-links {
  color: #fff;
  text-align: left;
  text-decoration: none;
  font-size: 15px;
  margin-top: 20px;
}

footer .footer-reg-links a:hover {
  cursor: pointer;
  transition: all 200ms ease-in;
  color: var(--primary-color);
  text-decoration: none;
}

#disclaimer {
  color: #5c85be;
  margin-bottom: 9px;
}

#footer-end-text {
  font-size: 15px;
  margin: 25px;
  text-align: center;
  color: #cacaca;
}

.footer-github-project {
  text-decoration: none;
  color: #5690e2;
  transition: all 150ms ease-in;
}

.footer-github-project:hover {
  color: var(--primary-color);
}
