*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

body{
  font-family: Arial;
  background: #FFF;
  margin: 50px;
}

section {
  margin: 50px;;
}

h1,h2,h3,h4 {
    margin-top: 20px;
    margin-bottom: 20px;
    color: #11487c;
}

h1 {
  margin-bottom: 20px;
}

p {
    margin: 10px;
    color: #0a2e50;
}

li {
  margin-left: 100px;
  list-style: circle;
}

table {
  border-collapse: collapse; /* Ensures borders don't double up */
}

tr td {
  border: 1px solid black; /* Solid border with black color */
  padding: 8px; /* Optional: Adds spacing inside cells */
}

.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

nav{
  background: #2c6f7c;
  width: 100%;
}

label.logo{
  color: #FFFFFF;
  font-size: 35px;
  line-height: 80px;
  padding: 0 1rem;
  font-weight: bold;
}

nav ul{
  float: right;
  margin-right: 20px;
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
nav ul li a{
  color: white;
  font-size: 18px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
}
.checkbtn{
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}

@media (max-width: 850px){
  .checkbtn{
	display: block;
  }
  ul{
	position: fixed;
	width: 100%;
	height: 100vh;
	background: #202020;
	top: 80px;
	left: -100%;
	text-align: center;
	transition: all .5s;
  }
  nav ul li{
	display: block;
	margin: 50px 0;
	line-height: 30px;
  }
  nav ul li a{
	font-size: 20px;
  }
  #check:checked ~ ul{
	left: 0;
  }
}