*{
  box-sizing: all;
}

body{
  margin: 0px;
  padding: 0px;
  background-color:chocolate ;
}


#main{
  width: 100%;
  height: 25vh;
  position: relative;
}

.nav{
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: static;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background-color: #94A89A;
  box-shadow: 5px 10px 30px rgba(0,0,0,0.2);
  z-index: 1;
  margin-right: 60%;
}

.menu{
  list-style: none;
  display: contents;
  margin-left: 60%;
  color: aqua;
}


.menu li a{
  height: 40px;
  line-height: 45px;
  margin: 3px;
  padding: 0px 22px;
  display: flex;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  color: black;
}

.menu li a:hover{
  background-color: rgb(2, 2, 2);
  color:#9CB380;
  font-weight: bolder;
  cursor: pointer;
}


a{
  text-decoration: none;
}

.self_info{
  justify-content: space-around;
  padding: 0;
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Arial, Helvetica';
  font-weight: 200;
  line-height: 1.2px;
}

.btn{
  font-family: 'Arial, Helvetica', serif;
  background-color:white;
  color: black;
  padding: 15px 45px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border: 2px solid indigo;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.btn:hover{
  background-color: cornflowerblue;
  color: white;
  border: 2.5px solid black;
  cursor:pointer;
}

.table{
  align-items: center;
  border-collapse: collapse;
	margin: 20px auto 0 auto;
	font-size: 18px;
  font-weight: inherit;
	min-width: 400px;
  background-color: #F1BF98;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
	padding: 30px;
  box-shadow: 0 0 20px rgba(15, 11, 11, 0.15);
}

.table thead tr{
  background-color:#BACBA9;
	color: #1B1B1B;
	text-align: center;
	font-weight: bolder;
}