/* Variables */
:root {
  --font-sans: "Didact Gothic", Helvetica, sans-serif;
  --font-serif: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman,
    Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol;
  --font-size: 18px;
    --color-blue: #00CCFF;
    --color-yellow: #FFFF33;
    --color-pink: #FF00FF;
    --color-grey: #667E99;
    --color-orange: #FF7C00;
    --color-purple: #6637FF;
    --color-black: #0B0054;
        --color-dark: #333;
        --color-light: #f2f2f2;
    --transition-dur: 0.3s;
}



/* font-family: 'Didact Gothic', sans-serif;
font-family: 'Libre Bodoni', serif;
font-family: 'Yellowtail', cursive; */



/* Typography */

body {

  overflow-x: hidden;
  font-family: var(--font-sans);
  font-size: var(--font-size);
  line-height: 1.5; 
  background-color: #000000;
  background:  repeat center top fixed;
  background-size: 100%;
  
}

.main {
  background-color: #000000;
}

.card-site-title {
  background-color: #000000;
}

.card-site-title h1{
  color: #ffffff;
  font-size: 6em;
  font-weight: bolder;
}

.blog-zone {
  background-color: #000000;
}
.blog-zone .card-body {
  background-color: #000000;
}

.blog-zone .card-title {
  color: #ffffff;
  font-weight: bolder;
}

.blog-title {
  padding-left: 4rem;
  font-style: italic;
  font-size: smaller;
}

p {
  color:#ffffff;
  font-weight: 400;
}
em {
  color: #828282;
  font-weight: 500;
}
a {
  text-decoration: none;
  transition: var(--transition-dur);
}
a:hover {
  color: var(--color-green);
}
h1,
h2,
h3 {
  font-weight: 800;
}
h1 {
  color: var(--color-light);
  font-size: 3.5rem;
}
h2 {
  color: var(--color-dark);
  font-size: 2.8rem;
  margin-bottom: 1rem;
  transition: var(--transition-dur);
}
h3 {
  color: var(--color-dark);
  font-size: 2rem;
  margin-bottom: 0.9rem;
}
h4 {
  font-size: 1.2rem;
  font-weight: 700;
}

.title-banner {
    background-color: #FFFF33;
    min-height: 10rem;
}
.page-title {
    color: #00CCFF;
    font-family: 'Yellowtail', cursive;
    font-size: 5rem;
    text-align: left;
}

.btn {
  background-color: #00CCFF;
  color: #f2f2f2;
  transition: all .5s;
}

.btn:hover {
  color: #ffffff;
  background-color: #FFFF33;
  border-color: #00CCFF;
}






/* ======== END NAVIGATION MENU ================= */



/* Title Banner */

.title-banner {
  padding: none;
  background-color: black;

 

  
}
.logo-pic {
  width: 100vw;
  position:sticky;
  
  
}

a:link {
  color: white; 
  background-color: transparent; 
  text-decoration: none;
}

a:visited {
  color: rgb(181, 181, 181);
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}


/*===== FOOTER =====*/
.site-footer {
  background: #000000;
  width: 110vw;
  max-height: 20vh;
  padding-top: 1rem;
  margin-top: 2rem;
  color: #f2f2f2;
  offset-position: 2rem;

}

