* {
  box-sizing: border-box;
  margin: 0;
  padding: 10;
}

body {
  margin-top: 50px;
  padding: 10px;
  font-family: "Open Sans", sans-serif;
  color: rgb(10, 10, 10);
  background-color: rgba(115, 99, 115, 0.133);
  background-image: url("images/homebkn.png");
  padding-bottom: 50px;
}

/* navigation menu*/
.nav {
  position: fixed;
  background-color: #222;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
  z-index: 9999;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
}

.nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
  justify-content: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  padding: 7px 15px;
  transition: all 0.3s ease-in-out;
}

.nav.active {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav.active a {
  color: #000;
}

.nav.active .container {
  padding: 10px 0;
}

.nav a.current,
.nav a:hover {
  color: #c0392b;
  font-weight: bold;
}

table {
  margin-left: 20px;
  width: 90%;
}

td {
  display: table-cell;
  width: 5%;
  text-align: center;
  overflow: hidden;
  vertical-align: baseline;
}

img {
  width: 100%;
  height: 150px;
  margin-left: 25px;
  margin-top: 5px;
}

html {
  width: 100%;
}

table {
  margin-top: 100px;
}
.table-2 {
  margin-top: 30px;
}

a {
  color: rgb(190, 186, 211);
}
