html{
  font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f3f2f1;
    margin: 0 auto;
}

#page-header{
  background: white;
}

#ukhsa-bar{
  background: black;
  color: white;
  font-size: larger;
  padding-bottom: 15px;
  padding-top: 15px;
  border-bottom: 10px solid #007c91;
}

#page-title{
  font-size: larger;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid lightgray;
}

#navbar{
  border-bottom: 1px solid lightgray;
  display: flex;
}

#navbar ul{
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding-top: 15px;
  padding-bottom: 15px;
}

#navbar ul li{
  display: inline-block;
  margin-right: 1em;
}

#navbar ul li a{
  text-decoration: none;
  color: black;
}

#navbar ul li:hover{
  text-decoration: underline;
}

#main{
  border-bottom: 10px solid #007c91;
  padding-top: 20px;
  padding-bottom: 30px;
  background: white;
}

footer{
  color: rgb(54, 54, 54);
  padding-top: 100px;
  padding-bottom: 100px;
}

a{
  color: #007c91;
}

.card{
  background: #f1f1f1;
  padding: 10px 20px;
  border-radius: 10px;
}

.uksmi-table td{
  padding-top: 6px;
  padding-bottom: 6px;
}

.uksmi-table tr:hover{
  background: #f1f1f1;
}

.uksmi-table tr:nth-child(even){
  background: #f9f9f9;
}

.uksmi-table th{
  padding-top: 2px;
  padding-bottom: 2px;
  text-align: left;
  min-width: 4em;
}

#ukhsa-bar, #main, #page-title, #navbar, footer{
  padding-left: 30px;
  padding-right: 30px;
}

@media only screen and (max-width: 400px){
  #navbar ul li{
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 900px){
  #ukhsa-bar, #main, #page-title, #navbar, footer{
    padding-left: calc((100vw - 900px) / 2);
    padding-right: calc((100vw - 900px) / 2);
  }
}