*{
    margin: auto;
    padding: 1px;
}

header{
	background-color: greenyellow;
	display: flex-start;
    align-items: center;
	width: 100%;
}

th{
	color: red; font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	border-bottom-style: solid;
	border-top-style: solid;
	border-left-style: solid;
	border-right-style: solid;
	border-color: black;
	display: block;
}

td{
	border-left-style: solid;
	border-right-style: solid;
	display: block;
}

td.end{
	border-bottom-style: solid;
	border-top-style: collapse;
}

p{
	color: blue;
}

footer{
	background-color: brown;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    height: 55px;
}

p.f{
	color:white;
}

nav{
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
    height: 25px;
}

nav a{
    text-decoration: none;
    color: tomato;
    text-shadow: 0px 25px 1px black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    transition: 0.5s;
    height: 50px;
}

nav a:hover{
    transform: translateY(-25px);
}