@charset "UTF-8";
/* CSS Document */
/* THIS IS WHERE YOU CALL YOUR GOOGLE FONTS */
@import url(https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200..900;1,200..900&family=Lora&family=Inknut+Antiqua:wght@300;400;500;600;700;800;900&family=Rock+Salt&display=swap);
/* -- DECLARING COLOUR & TEXT VARIABLES FOR USE THROUGHOUT THE CSS -- */
/* -- SEE https://www.w3schools.com/css/css3_variables.asp FOR EXPLANATION OF VARIABLES -- */
:root {
  --bgc: rgb(255, 255, 255);
  --textc: rgba(44, 43, 51, 1);
  --textsm: rgba(44, 43, 51, .5);
  --titlesm: rgba(44, 43, 51, 1);
 --bodyfont: "Crimson Pro", sans-serif;
  --leaderfont: "Inknut Antiqua", sans-serif;
  --titlefont:"Rock Salt", serif; 
  --smfont:"Crimson Pro", serif;
}

body {
  margin: 0;
  font-family: var(--bodyfont);
  color: var(--textc);
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  background-color: var(--bgc);
}

a img:hover {
  transform: scale(105%);
  transition: .3s ease-out;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius:  50px;
-webkit-box-shadow: 0px 0px 30px 0px rgba(255 0 0 / 0.67);
-moz-box-shadow:    0px 0px 30px 0px rgba(255 0 0 / 0.67);
box-shadow:         0px 0px 30px 5px rgba(255 0 0 / 0.67);
}
/* -- HEADER -- */
.topnav {
  font-family: var(--titlefont);
  background-color: var(--bgc);
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
  position: fixed;
  width: 100%;
  z-index: 3;
  /*font-size: 1.74rem;*/
  padding: 0 10px;
  font-size: 1.5rem;
}

.topnav #title {
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}

p{
  font-family: var(--bodyfont);
  font-size: 1.188rem;
  font-weight: 500;
  margin-top: 0rem;
margin-bottom: 0rem;
}

h1{
  text-shadow: 2px 2px red; 
  margin-bottom: -2rem;
  margin-left: 1rem;
  margin-top: 0px;
}

/*-- MULTI-COLUMN CONTAINER AND ITEMS --*/
.item-container {
  max-width: 1400px;
  margin: 0 auto;
  /* -- THIS NEXT LINE LETS THE BODY SITS BELOW THE HEADER -- */
  padding: 220px 20px 0;
  /* -- THIS NEXT LINE MAKES THE BODY FULL HEIGHT MINUS THE HEADER PADDING -- */
  height: calc(100vh - 160px);
}
.item {
  box-sizing: border-box;  
  padding: 20px;
  /*margin-bottom: 20px;*/
}
.small{
  font-family: var(--smfont);
  font-size: 1rem;
  color: var(--textsm); 
  margin-bottom: 20px;
}
.titlesmall{
  font-family: var(--smfont);
  font-size: 1rem;
  color: var(--titlesm); 
  margin-bottom: 10px;
  font-weight: 500;
  
}
hr {
  width: 100%;
  /* note - no colour added, but you can using "border-top" -- */
  /* border-top: 1px  red; */
}

.subtitle {
  font-family: var(--titlefont);
  font-weight: 700;
  font-size: 2.25rem;
}
.leader {
  font-family: var(--leaderfont);
  font-weight: 300;
    font-size: 1.3rem;
}






/* =========== LoVeHA Rule Links =========== */
.leader a {
  color: rgb(0, 0, 0); 
  /* change to suit your design */

  text-decoration: none;  
  /* remove default underline */
}

.leader a:hover {
  
  text-shadow: 0 0 2px #FF0000;
}

.leader a:active {
  color: rgb(255, 0, 0); 
  /* only shows when clicking the mouse */
}



/* -- MEDIA QUERY -- */


/* 41.563rem = 665px */
@media (max-width: 44.438rem) {
  
  h1 {
    padding-top: 1rem;
   
    font-size: 1.5rem;
    line-height: 3rem;
  }
  
  p{
    font-size: 1rem;
    
  }
  .leader {font-size: 1rem;
  line-height: 3rem;}
  
  }
/*end media query 25rem*/


/* 48em = 768px */
@media (min-width: 48em) {
  /*-- GRID STYLING FOR BODY CONTENT --*/
  .item-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0px;

  }
}
/*end media query 48em*/



