*{
  box-sizing: border-box;
}

body{
  margin: 0px;
  padding: 0px;
  background-color: rgb(250, 206, 206);
}


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

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

.logo img{
  height: 100px;
}

.menu{
  list-style: none;
  display: flex;
  margin-left: 60%;
}


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

.menu li a:hover{
  background-color: rgb(21, 235, 250);
}


a{
  text-decoration: none;
}

.my-info{
  justify-content: space-around;
  padding: 0;
  text-align: center!important;
  margin-bottom: 1rem;
  font-family: 'Itim', cursive;
  font-weight: 400;
  line-height: 1.2px;
}

.btn{
  font-family: 'Itim', cursive;
  background-color: rgb(76, 43, 226);
  color: white;
  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: rgba(131, 0, 253, 0.623);
}

.table{
  border-collapse: collapse;
	margin: 20px auto 0 auto;
	font-size: 0.9em;
	min-width: 400px;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
	padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.table thead tr{
  background-color: rgb(247, 215, 39);
	color: white;
	text-align: left;
	font-weight: bold;
}

.table th,
.table td{
  padding: 5px 70px;
}

.table tbody tr{
  border-bottom: 1px solid lightslategray;
}

.table tbody tr:nth-of-type(odd){
  background-color: rgb(205, 223, 241);
}

.table tr:nth-of-type(even){
  background-color: lightgrey;
}

tr{
  cursor: pointer;
}

.table tbody tr:hover{
  background-color: whitesmoke;
}