<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS Template</title>
<meta charset="iso-8859-1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>

/* Semantic elements in html: https://www.w3schools.com/html/html5_semantic_elements.asp */
/* Default css values: https://www.w3schools.com/cssref/css_default_values.php */
/* Html symbols: https://www.w3schools.com/html/html_symbols.asp */

* {
  box-sizing: border-box;
}

/* Title styles */
.titleHuge {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #FFFFFF;
    text-decoration: none;
}

.title2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #000066;
	text-decoration: none;
}

.title1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}

/* Text styles */
.text1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	text-decoration: none;
}

.option {
    	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}

.copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
}

/* */
/* Style the body */
body {
  background-color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #000000;
}

/* Style the header */
header {
    background-color: #cccccc;
    padding-top: 0px;
    padding-bottom: 0px;
}

header h2 {
    margin-bottom: 0px;
    margin-right: 20px;
    margin-top: 20px; 
    text-align: right;
}

.row {
    display: flex;
    flex-direction: row;
}

.left_column {
    flex:12%;
    text-align: left;
    min-width: 145px;
    width: 145px;
}

.rigth_column {
    flex: 88%;
    background-color: #cccccc;
}

/* Create two columns/boxes that floats next to each other */
section{
    display: flex;
    flex-direction: row;
}

/* Left column: Menu */
nav {
    width: 130px;
    min-width: 130px;
    background: #305F8F;
    padding-top: 40px;
    text-decoration: none;
}

/* Style the list inside the menu */
nav a:link, nav a:visited {
  color: #FFFFFF; 
  background-color: transparent;
  text-decoration: none;
}

nav a:hover, nav a:active {
  color: #FFFFFF; 
  background-color: transparent;
  text-decoration: underline;
}

nav ul {
    list-style-type: none;
    justify-content: center;
    padding-left: 5px;
    padding-right: 5px;
}

nav li {
    margin-bottom: 30px;
}

/* Right column: text */
article {
  flex: 92%;
  background-color: #f1f1f1;
}

/* Style the table inside the article (https://www.scaler.com/topics/css/css-tables/) */
article table{
    border: 0px;
    width: 95%;
    cellpadding: 0px;
    cellspacing: 0px;
}

/* Clear floats after the columns */
/* section::after {
  content: "";
  display: table;
  clear: both;
}
*/

/* Style the footer */
footer {
  background-color: #cccccc;
  padding: 10px;
  text-align: right;
  color: white;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
/*
@media (max-width: 600px) {
  nav, article {
    width: 100%;
    height: auto;
  }
}
*/
</style>
</head>


<!-- .títlo1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}

.method {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: italic;
	color: #666666;
	text-decoration: none;
}
.type {

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #666666;
	text-decoration: none;
} -->
