@import url('https://fonts.googleapis.com/css?family=Lato');
@import url('https://fonts.googleapis.com/css?family=Oswald');
@import url('https://fonts.googleapis.com/css?family=Raleway:100');


body {
    font-family: "Lato", Arial, monospace;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}

header {
    background-color: #00644D;
    color: white;
    padding: 2rem;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #003327;
}

.tablink {
    background-color: inherit;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 20px;
    font-size: 17px;
    transition: 0.3s;
    font-family: "Raleway", Arial, monospace;
    font-weight: bold;
}

.tablink:hover {
    background-color: #C1E1C1;
    color: #003327;
}

.tabcontent {
    display: none;
    padding: 40px;
    max-width: 900px;
    margin: auto;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 30px;
}

section a {
  color: #088845;
}

section a:hover {
  color: #B779E4;
}

section li {
    margin-bottom: 10px;
}

h2 {
    color: #00644D;
    border-bottom: 2px solid #00644D;
    padding-bottom: 10px;
	font-family: "Oswald", Arial, monospace;
}

h3 {
    color: #00644D;
	font-family: "Raleway", Arial, monospace;
	font-size: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #ecf0f1;
}