@font-face {
  font-family: "ZillaSlab";
  src:
    local("Zilla Slab"),
    url("font/ZillaSlab-Regular.otf")
}

@font-face {
  font-family: "ZillaSlab Light";
  src:
    local("Zilla Slab Light"),
    url("font/ZillaSlab-Light.otf")
}

@font-face {
  font-family: "ZillaSlab Bold";
  src:
    local("Zilla Slab Bold"),
    url("font/ZillaSlab-Bold.otf")
}

@font-face {
  font-family: "ZillaSlab Italic";
  src:
    local("Zilla Slab Italic"),
    url("font/ZillaSlab-Italic.otf")
}

@font-face {
  font-family: "Jost Light";
  src:
    local("Jost Light"),
    url("font/Jost-300-Light.otf")
}

@font-face {
  font-family: "Fraunces Semibold";
  src:
    local("Fraunces Semibold"),
    url("font/Fraunces9pt-SemiBold.woff2")
}

h1 {
  font-family: 'Fraunces Semibold', Arial, Helvetica, sans-serif;
  text-align: center;
  color: rgb(255, 0, 133);
  border-bottom: 2px dotted;
  padding: 10px;
  font-size: 2rem;
}

& h2 {
  font-family: 'Fraunces Semibold', Arial, Helvetica, sans-serif;
  color: rgb(255, 0, 133);
  font-size: 1.5rem;
  text-align: center;
  border-bottom: dotted 2px;
  padding-bottom: 10px;
}

body {
    background-color: white;
    background-image: url(img/gmcbg.gif);
    background-repeat: repeat;
    background-position: center;
    background-attachment: fixed;
    color: rgb(65, 65, 65);
    font-family: 'Jost Light', Arial, Helvetica, sans-serif;
    margin: 1px;
    padding: 2px 10px 10px 20px;
    font-size: 23px;
}

a {
  color: rgb(25, 25, 25);
  background-color: rgba(242, 247, 255, 0.921);
  border: 1px solid rgba(3, 41, 255, 0.481);
  border-radius: 10px;
  padding: 5px;
  text-decoration: none;
  transition: color 0.5s;
}

a:hover {
  color:rgb(37, 99, 255);
  transition: color 0.5s;
}

b {
  font-family: 'ZillaSlab Bold' 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: rgb(73, 100, 148); /*or rgb(194, 27, 113) a rogue color*/
}

i {
  font-family: 'ZillaSlab Italic' 'Lucida Sans',
    'Lucida Sans Regular',
    'Lucida Grande',
    'Lucida Sans Unicode',
    Geneva,
    Verdana,
    sans-serif;
}

footer {
  border: 1px solid gray;
  background-color: rgba(255, 255, 255, 0.538);
  padding: 10px;
  width: auto vw;
  text-align: center;
}

::selection {
  background: #ff00b737;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #ff00b737;
  /* Gecko Browsers */
}

img {
  border: 2px solid rgb(255, 230, 234);
  transition: border 1s;
    transition-delay: 0.5s;
}

img:hover {
  border: 2px dashed rgb(255, 0, 133);
  transition: border 1.5s;
}

hr {
  width: 0.5vw;
}

blockquote {
  padding-left: 15px;
  margin-left: 5px;
  border-left: 2px solid rgba(3, 41, 255, 0.481);
  font-family: 'ZillaSlab',
    'Trebuchet MS',
    'Lucida Sans Unicode',
    'Lucida Grande',
    'Lucida Sans',
    Arial,
    sans-serif;
    line-height: 2.1rem;
}

/*div classes*/

.index {
  margin: 2px auto;
  width: 90vw;
  padding: 20px 20px 20px 20px;
  border: 5px solid rgb(255, 0, 133);
  background-color: rgb(255, 255, 255);
  & h1 {
  font-family: 'Fraunces Semibold', Arial, Helvetica, sans-serif;
  color: rgb(255, 0, 133);
  font-size: 4rem;
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: dotted 2px;
  }
  & p {
    font-family: 'ZillaSlab', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 2.2rem;
    text-align: center;
  }
  & a {
    font-family: 'ZillaSlab Light', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}

.index2 {
  margin: 1em auto;
  width: auto vw;
  padding: 20px 20px 20px 20px;
  border: 5px solid rgb(255, 0, 133);
  background-color: rgb(255, 255, 255);
  display: flexbox;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-gap: 20px;

  & h1 {
    font-family: 'Fraunces Semibold', Arial, Helvetica, sans-serif;
    color: rgb(255, 0, 133);
    font-size: 2rem;
    text-align: center;
    border-bottom: dotted 2px;
    padding-bottom: 10px;
  }

    & h2 {
      font-family: 'Fraunces Semibold', Arial, Helvetica, sans-serif;
      color: rgb(255, 0, 133);
      font-size: 1.5rem;
      text-align: center;
      border-bottom: dotted 2px;
      padding-bottom: 10px;
    }

  & p {
    font-family: 'ZillaSlab', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 2.2rem;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  & a {
    font-family: 'ZillaSlab Light', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}

.index3 {
  display: flex;
  margin: 1em;
  width: 50vw auto;
  padding: 20px 20px 20px 20px;
  border: 5px solid rgb(255, 0, 133);
  background-color: rgb(255, 255, 255);
  
}

.index3-content {
    width: 50vw;
      padding: auto;
      flex: 1;
  & p {
    font-family: 'ZillaSlab', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 2.2rem;
  }

  & a {
    font-family: 'ZillaSlab Light', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
}

.grid {
display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin: 1em;
    width: 50vw;
    padding: 20px;
    border: 5px solid rgb(255, 0, 133);
    border-radius: 5px;
    background-color: rgb(255, 255, 255);
}

.grid-content {
  width: 50vw;
    padding: auto;
    grid-template-rows: 5rem auto;
      
  & p {
    font-family: 'ZillaSlab', sans-serif;
    padding: auto;
    margin: 5px;
    line-height: 2rem;
  }
}

.cards {
  width: 95vw;
  margin: 1em auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  object-fit: cover;
}

.card {
  border: 1px solid #999999;
  border-radius: 3px;

  display: grid;
  grid-template-rows: 5rem auto;

  object-fit: cover;
}



.card .content {
  padding: 0.5rem;
}