@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
  background-color: rgb(255, 255, 186);
  font-family: 'Roboto', sans-serif;
}

h1 {text-align: center;  
	color: navy;
	margin-center: 0px;
	font-family: 'Roboto', sans-serif;
}

p {
	text-align: center;
    font-family: 'Roboto', sans-serif;}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}
#RaceResults {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#RaceResults td, #RaceResults th {
  border: 1px solid #ddd;
  padding: 8px;
}

#RaceResults tr:nth-child(even){background-color: #f2f2f2;}

#RaceResults tr:hover {background-color: #ddd;}

#RaceResults th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #0464aa;
  color: white;
}
#Career {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#Career td, #Career th {
  border: 1px solid #ddd;
  padding: 8px;
}

#Career tr:nth-child(even){background-color: #f2f2f2;}

#Career tr:hover {background-color: #ddd;}

#Career th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #0464aa;
  color: white;
}
#Time {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#Time td, .Time th {
  border: 1px solid #ddd;
  padding: 8px;
}

#Time tr:nth-child(even){background-color: #f2f2f2;}

#Time tr:hover {background-color: #ddd;}

#Time th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #0464aa;
  color: white;
}
h1 {text-align: center;}
div {text-align: center;}
h3 {text-align: center;}
h2 {text-align: center;}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}