/* headings */
@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 900;
    src: url(fonts/Gilroy-Black.otf) format('opentype');
}
@font-face {
    font-family: 'Gilroy';
    font-style: italic;
    font-weight: 900;
    src: url(fonts/Gilroy-BlackItalic.otf) format('opentype');
}

@font-face {
    font-family: 'Gilroy';
    font-style: italic;
    font-weight: 700;
    src: url(fonts/Gilroy-BoldItalic.otf) format('opentype');
}

@font-face {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/Gilroy-Regular.otf) format('opentype');
}

/* body */
@font-face {
    font-family: 'Hind';
    font-style: normal;
    font-weight: 400;
    src: url(fonts/Hind-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Hind';
    font-style: normal;
    font-weight: 500;
    src: url(fonts/Hind-Medium.ttf) format('truetype');
}

body {
    font-family: Hind !important;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    color: #c9ceff;
}

h1 {
    font-family: Gilroy !important;
    font-size: 36px;
    font-weight: 900;
}

h2 {
    margin-top: 2em;
    font-size: 24px;
    font-family: Gilroy;
}

h3 {
    font-family: Gilroy;
}

h4 {
    font-family: Gilroy;
}

h5 {
    font-family: Gilroy;
}

h6 {
    font-family: Gilroy;
}

a {
    font-family: Hind !important;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    color: #c9ceff;
    
}

.bottomHR {
    border-bottom-color: #c9ceff;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: #c9ceff;
    border-left-style: none;
    border-left-width: 0px;
    border-right-color: #c9ceff;
    border-right-style: none;
    border-right-width: 0px;
    border-top-color: #c9ceff;
    border-top-style: none;
    border-top-width: 0px;
    box-sizing: content-box;
    color: #c9ceff;
}

.flexCenter {
    flex: 1;
    text-align: center;
}


nav {
  contain: layout;
  background-color:var(--4);
  padding:.5rem 1rem;
  border-radius:4px
}
nav a {
  color:var(--5);
  margin-left:1rem;
  text-decoration:none;
  font-weight:700;
}
nav a:hover {
  text-decoration:underline
}

.content {
    max-width: 728px; 
    margin-left: auto; 
    margin-right: auto; 
    padding-left: 60px;
    padding-right: 60px
}