/* Poppins font */

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    font-style: normal;
    src: url('./fonts/Poppins-Regular.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 400;
    font-style: italic;
    src: url('./fonts/Poppins-Italic.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: normal;
    src: url('./fonts/Poppins-Bold.ttf');
}

@font-face {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: italic;
    src: url('./fonts/Poppins-BoldItalic.ttf');
}

/* CSS Vars */

:root {
    --digivelopViolet: #410099;
    --digivelopSage: #D4CA9F;
    --buttonBackgroundColor: #fff;
    --buttonHoverColor: var(--digivelopSage);
    --headerFontFamily: Candara, Optima, Calibri, Segoe, Segoe UI, Arial, sans-serif; 
    --mainFontFamily: Poppins, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
}



/* HTML ELEMENTS */

  html {
	-ms-text-size-adjust: 100%;
    height: 100%;
  }
  
  
  body {
        font-family: var(--mainFontFamily);
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      	background-color: #fff;
		color: #000000;

		margin: 0;

  }

  header,
  main,
  footer {
	width: 100%;
	text-align: center;
	align-items: center;
	align-content: center;
  }
  
  a {
      color: var(--digivelopViolet);
      transition: all 0.5s;
	  text-decoration: none;
	  font-weight: bold;
  }
  
  a:hover,
  a:active,
  a.selected {
      color: var(--digivelopSage);
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--headerFontFamily);
    color: var(--digivelopViolet);
    margin: 20px 0;
  }
  
  hr.digi_hr {
      border-top: 3px solid var(--digivelopSage);
	  height: 3px;
	  background-color: #b5b4b1;
	  opacity: 1.0;
      margin: 40px auto;
      width: 100%;
  }
  
  img {
      box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
	  border-radius: 10px;
  }
  
  button {
      padding: 10px;
      font-weight: bold;
      font-family: var(--headerFontFamily);
      font-size: 1.3em;
      color: var(--digivelopViolet);
      background-color: var(--buttonBackgroundColor);
      border: 2px solid var(--digivelopSage);
      border-radius: 5px;
      box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2);
      transition: all 0.5s;
  }
  
  form {
	text-align: left;
  }
  
  label,
  input,
  textarea {
      display: block;
      width: 100%;
  }
  
  label {
      font-weight: bold;
      font-family: var(--headerFontFamily);
      font-size: 1.2rem;
  }
  
  input,
  textarea {
      margin: 10px 0 20px 0;
      border: 2px var(--digivelopSage) solid;
      border-radius: 5px;
      font-size: 1rem;
      padding: 20px;
      font-family: var(--mainFontFamily);
      box-shadow: 0px 0px 4px 4px rgba(0,0,0,0.2) inset;
      -webkit-box-shadow: 0px 0px 4px 4px rgba(0,0,0,0.2) inset;
      -moz-box-shadow: 0px 0px 4px 4px rgba(0,0,0,0.2) inset;
  }
  
  input:focus,
  input:active,
  textarea:focus,
  textarea:active {
      border-color: var(--digivelopViolet);
      outline: var(--digivelopViolet);
  }
  
  input {
      height: 2rem;
  }
  
  textarea {
      min-height: 10rem;
  }
  
  
  @media (hover: hover) { 
      button:hover {
          cursor: pointer;
          /* background-color: var(--buttonHoverColor); */
          box-shadow: 0px 0px 3px 3px rgba(0,0,0,0.2) inset;
          border-color: var(--digivelopViolet);
      }	
  }
  
/* CLASSES */
  .contentTopBorder {
      border-top: 2px var(--digivelopSage) solid;
  }


/* IDs */
div#main_container {
	width: 50%;
	margin: 50px auto 0 auto;
}

nav#main_nav ul {
	list-style: none;
}

nav#main_nav ul li {
	display: inline-block;
	margin-right: 20px;
}

