@import 'https://delta.cyanic.me/fonts/cyanic/21.css';
@import 'https://cdn.jsdelivr.net/npm/@mdi/font@7.1.96/css/materialdesignicons.min.css';

body {
  margin: 0;
  font-family: 'PT Sans', sans-serif;
}

:root {
  --accent: #6666ff;
  --accent-cro: indigo;
  --accent-fmo: #ffb366;
  --accent-hosts: #008000;
  --accent-tools: #6650a4;

  --color-yellow: #e2df20;
}

/* ========================> LOGO */
.logo {
  background-image: linear-gradient(to right, #9999ff, #3333ff);
  background-clip: text;
  color: transparent;
  font-family: 'PT Serif', serif;
  font-size: 24px;
  font-weight: 700;
}

/* ========================> STANDARD RULES */
.margin {
  margin: 0 auto;
}
@media only screen and (max-width: 900px) {
  .margin {
    padding-left: 20px;
    padding-right: 20px;
    width: calc(100% - 40px);
    max-width: 100%;
  };
}
@media only screen and (min-width: 900px) {
  .margin {
    padding: 0;
    width: 900px;
    max-width: 100%;
  }
}

/* ========================> NAV BAR */
nav {
  box-shadow: 0px 0px 3px #999999;
  width: 100%;
  background-color: white;
  position: fixed;
}
.nav-element-padded {
  padding: 7.5px 20px;
}

/* ========================> PROMINENT */
#prominent {
  height: 500px;
  display: flex;
  flex-direction: row;
}
.prominent--darkpurple {
  color: white;
  background-color: #3e3e5f;
}
#prominent-content {
  align-self: flex-end;
}
#prominent h1 {
  font-size: 40px;
  font-family: 'PT Serif', serif;
}

/* ========================> HEADINGS */
h1, h2 {
  font-family: 'PT Serif', serif;
}

/* ========================> FEATURES */
.feature {
  display: block;
  text-decoration: none;
  margin: 0 auto;
  width: 800px;
  max-width: 100%;
  border-bottom: 1px solid #666666;
}
#feature-content {
  padding: 10px 20px;
}
.feature-icon, .feature-description, .feature-link {
  display: inline-block;
}
.feature-icon {
  width: 15px;
  height: 15px;
  background-color: black;
  border-radius: 50%;
}
.feature-description {
  color: #222222;
  width: 80%;
}
.feature-description b {
  font-weight: bold;
  margin-right: 20px;
}
.feature-link {
  text-align: right;
  color: var(--accent);
  text-decoration: underline;
  width: calc(100% - 25px - 80%);
}

/* ========================> BADGES */
.badges {
  display: flex;
  flex-wrap: wrap;
}
.badge {
  background-color: white;
  box-shadow: 0px 0px 3px #999999;
  border: 0px solid transparent;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
  color: black;
  white-space: nowrap;
}
.badge-link {
  text-decoration: none;
}
.badge--gray { color: white; }

/* ========================> SECTIONS */
.m2 {
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
}
.accent--darkpurple {
  background-color: #ceceff;
}

/* ========================> LOADER AND FEATURE ICONS */
.loader-div {
  display: inline-block;
  height: 4px;
  width: 5%;
}
#loader-div1, .badge--blue { background-color: var(--accent); }
#loader-div2, .feature-icon-darkpurple { background-color: var(--accent-cro); }
#loader-div3, .feature-icon-purple { background-color: var(--accent-tools); }
#loader-div4, .feature-icon-orange { background-color: var(--accent-fmo); }
#loader-div5, .feature-icon-green { background-color: var(--accent-hosts); }
.feature-icon-gray, .badge--gray { background-color: #666666; }
.feature-icon-red, .badge--red { background-color: #ff4444; }
.badge--blue2 { background-color: #4783B4; }
.badge--yellow { background-color: var(--color-yellow); }
#loader-logo { opacity: 0; }

/* ========================> FOOTER */
footer {
  background-color: #222222;
  color: white;
  padding-top: 30px;
  padding-bottom: 30px;
}
footer a {
  color: var(--accent);
}
.footer-link-group {
  color: #999999;
  display: block;
}