:root {
  --blurred-btn-bg: var(--light);
}

body {
  font-family: 'Roboto', sans-serif;
  margin-top: 70px;
  background-color: #eeeeee;
  color: #212529;
}

body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 70px);
}
.footer-offset {
  flex-grow: 1;
}
.footer {
  background-color: #222222;
}

.container {
  position: relative;
}

a.nounderline {
 text-decoration: none !important;
}
a.nohover:hover {
  color: var(--primary);
}

.discord-logo {
  filter: invert(100%);
}

.alternatebg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: var(--primary);
}

.alternatebg:nth-child(even) {
  background-color: #e0e0e0;
}

.btn-primary, .navbar-brand {
  color: #fff !important;
}

.parallax {
  margin-top: -70px;
  position: relative;
  height: 65vh;
  overflow: hidden;
  background:
  linear-gradient(
    rgba(34, 34, 34, 0.3),
    rgba(34, 34, 34, 0.3)
  );

  display: flex;
  justify-content: center;
  align-items: center;
}
.parallax::before {
  content:"";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;

  /* Create the parallax scrolling effect */
  background-attachment: fixed !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.parallax video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
.parallax .middle {
  margin-top: 70px;
  z-index: 2;
}
.middle {
  text-align: center;
  color: #fff;
}
@font-face {
  font-family: CastIron-Condensed;
  src: url('../fonts/CastIron-Condensed.otf');
}
.ci {
  font-family: 'CastIron-Condensed', sans-serif;
}
.title-main {
  font-size: 7em;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
::-webkit-scrollbar
{
	width: 10px;
  height: 10px;
	background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
	background-color: var(--primary);
}

.card-img-caption {
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}

.card-img-top {
  height: 132px;
  overflow-y: hidden;
}

span.card-img-top {
  display:inline-block;
}

.card-img-top img {
  width: 100%;
}

.card-img-top .blurred-profile {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.card-img-caption {
  z-index: 0;
  margin-bottom: 2em;
}

.card-img-caption .profilecircle {
  margin: 10% 25%;
  position: absolute;
  z-index: 1;
}

.profilecircle {
  border-radius: 50%;
  border: 4px solid white;
  height: 150px;
  width: 150px;
}

.avism {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.avimd {
  border-radius: 50%;
  width: 42px;
  height: 42px;
}

.nav-tabs, .nav-tabs .nav-link {
  border-color: var(--gray-dark) !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card {
  margin-bottom: 2em;
}

.hoverscale {
  -webkit-transition: 0.25s;
          transition: 0.25s;
}
.hoverscale:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.btn-outline-custom {
  color: var(--primary);
  background-color: transparent;
  background-image: none;
  border-color: var(--primary);
}

.btn-outline-custom:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.border-custom {
  border: 1px solid #dee2e6 !important;
}

.table {
  background-color: var(--white);
}

.ql-toolbar {
  background-color: var(--white);
  color: black;
}

p:not(:last-of-type) {
  margin-bottom: 0;
}
