html {
    box-sizing: border-box;
    font-size: 62.5%;
}

body {
    width: 900px;
    background-color:  	white;
    color: black;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 1.6em;
    font-weight: 300;
    line-height: 1.6;
    margin: 0 auto; 
    text-align: center;
}

img {
    height: 40px;
    width: auto;
    padding: 5px;
}

a:link {
    color: ca4b9c;
}

a:visited {
    color: ca4b9c;
}

table {
   text-align: left;
}

.fullbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ccc;
}

.navbar {
    text-align: left;
    align-items: left;
    padding: 5px;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #404040;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}
    
.tab button {
    background-color: inherit;
    color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    border-radius: 18px;
}
   
    
.tab button:hover {
    background-color: #1d2951;
    color: white;
}
    
.tab button.active {
    background-color: #003399;
    color: white;
}

.content {
  border: 1px solid #ccc;
}

.dropbtn {
  background-color: #b8dfe3;
  color: black;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
  border: 1px solid #ccc;
  background-color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: transparent;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #404040;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn:hover {
  background-color: #404040;
  color: white;
}

.flashes {
    list-style-type: none;
    padding: 0;
}

.flashes li.success {
    color: green;
    font-weight: bold;
}
