.whole {
  background-image: url(Images/double-bubble-dark.png);
  background-color: #2b2b28;
}

html,body{
  padding:0px;
  margin:0px;
  overflow-x: hidden;
}

body {
  width: 100%;
}

#nav {
  display: flex;
  padding-top:10px;
  padding-bottom:10px;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  background-color: rgba(218, 218, 218, 0.7);
  height: 20%;
  margin-left: 0px;
}

.name {
  font-size: 3rem;
  color:black;
}

h2 {
  padding: 30px;
  color: #c19898;
  text-align: center;
}

.logo {
  border-radius: 10px;
  width: 100px;
  height: auto;
}

#menu-text{
  color: black;
  font-size: 25px;
  width: fit-content;
}

.menu-bar ul {
  list-style: none;
  font-weight: bold;
}

.menu-bar ul li{
  margin: 2px;
  padding: 15px;
}
.menu-bar ul li a {
  text-decoration: none;
  color: white;
  font-size: 1rem;
}

.menu-bar ul li:hover {
  background-color: grey;
  font-weight: bold;
  border-radius: 3px;
}

.submenu {
  display: none;
}

.menu-bar ul li:hover .submenu {
  display: block;
  position: absolute;
  border-radius: 3px;
  background-color: gray;
  margin-top: 35px;
  margin-left: 0px;
}

.menu-bar ul li:hover .submenu ul {
  display: inline;
  background-color: gray;
}

.menu-bar ul li:hover .submenu ul li {
  width: 200px;
  border-bottom: 1px solid white;
  background: transparent;
  border-radius: 3px;
  text-align: left;
}

.menu-bar ul li:hover .submenu ul li:last-child {
  border-bottom: none;
}

.menu-bar ul li:hover .submenu ul li a:hover {
  color: white;
}

.top {
  padding: 0px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  table-layout: auto;
  width: 100%;
}

.center,
.top {
  line-height: 2.3em;
  font-family: sans-serif;
  font-weight: 900;
  font-size: 20px;
  margin: auto;
  color: #ebebe3;
}

td {
  text-align: center;
}

thead {
  font-weight: bolder;
  background-color: rgba(219, 204, 223, 0.4);
}

thead tr th {
  color: white;
  margin: 40px;
}

table,
th,
td {
  border: 2px solid rgba(185, 131, 131, 0.541);
  text-align: center;
}

.shifting {
  display: flex;
  padding-left: 45%;
}

@media only screen and (max-width: 800px) {
  #nav {
    display: flex;
    justify-content: space-around;
    flex-direction: row-reverse;
    align-items: center;
    width: 104%;
    margin-left: -15px;
  }

  .name {
    font-size: 1.5rem;
  }

  .menu-bar {
    display: none;
  }

  .center,
  .top {
    line-height: 2.3em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 1rem;
    margin: auto;
    color: #ebebe3;
  }

  .shifting {
    display: flex;
    padding-left: 10%;
    justify-content: center;
    text-align: center;
  }
}
