
      @font-face {
    font-family: 'Amatic SC';
    src: url("../css/fonts/AmaticSC-Regular.ttf");
}

@font-face {
    font-family: 'Amatic SC';
    font-weight:bold;
    src: url("../css/fonts/AmaticSC-Regular.ttf");
}

@font-face {
    font-family: 'Anonymous';
    src: url("../css/fonts/AnonymousPro-Regular.ttf");
}
@font-face {
    font-family: 'Montserrat';
    src: url("../css/fonts/Montserrat-Regular.ttf");
}


@font-face {
    font-family: 'Montserrat-b';
    src: url("../css/fonts/Montserrat-Black.ttf");
}


     /* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat';
}

 a{
	text-decoration:none;
	color:#b8430d;
	font-weight:800;
	
	}
	
 a:hover{
	font-style: italic;
	
	}

body{
  line-height: 1.6;
  color: #333;
  width:100vw;
  height:100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x:hidden;
}

.content{
  margin: auto;
  width: 90vw;
  height: 100vh;
  padding:20px;
}
h2{
  font-family:'Montserrat-b';
}

h3{
  font-family:'Montserrat-b';
  margin-top:15px;
}

body p{
  margin-top:15px;
}

li{
  margin-left:20px;
}

table{
  margin-top:15px;
  margin-left:auto;
  margin-right:auto;
}

tr{
 text-align: left;
}

th{
  background-color:rgb(222, 231, 222);  
 padding:5px;
}

td{
  background-color:rgb(238, 243, 238); 
  padding:5px;
}

footer{
  margin-top:20px;
  color:white;
}