/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body, html {
	  background-color: #FFFCDE;
  color: black;
  font-family: 'Sligoil Medium';
   font-size: 14px;
   letter-spacing: 0.01rem;
    margin: 0px;
    padding: 0px;
    width:100%;
    height:100%;

}

.content {
  margin-top: 5%;
  margin-left: 2%;
  margin-bottom: 5%;
  padding: 0px 20px;
  width: 60%;
}

@font-face {
  font-family: Sligoil Medium; /* set name */
  src: url(Sligoil-MicroMedium.ttf); /* url of the font */
      letter-spacing: -0.02rem;

}


h1 {
    font-family: "Sligoil Medium";
    letter-spacing: 0.1rem;
    font-size: 35px;

}

h3 {
      font-size: 18px;
      font-family: "Sligoil Medium";
}


.content a {
  color:#3273A1; background:none;
  -o-transition:color .1s ease-out, background .01s ease-in;
  -ms-transition:color .1s ease-out, background .01s ease-in;
  -moz-transition:color .1s ease-out, background .01s ease-in;
  -webkit-transition:color .1s ease-out, background .01s ease-in;
  /* ...and now override with proper CSS property */
  transition:color .5s ease-out, background .2s ease-in;
}

.content a:link, a:visited, a:active {
  color: #3273A1;
  text-decoration: none;

}

.content a:hover {
  text-decoration: none;
  background-color: #B0DFEB;
}

.content a.noU:hover {
  opacity: 0.6;
}

