* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  font-size: 16px;
  scroll-behavior: smooth;
}

body{
  font-family: system-ui,sans-serif;
  line-height: 1.6;
}

header{
  width: 100%;
  padding: 30px 20px;
  text-align: center;
}

header h1{
  font-size: 2.5rem;
  font-weight: 700;
}

main{
  width: 90%;
  max-width: 1100px;
  padding: 20px 30px;
  margin: 0 auto;
  font-size: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
  box-shadow: -4px -4px 4px rgba(118, 197, 177, 0.247);
  font-size: 16px;
} 

td:first{
  text-align: center;
}

th, td{
  border: 1px solid black;
  padding: 10px;
}

/* tbody tr td:nth-child(even){
  background-color: rgba(133, 216, 255, 0.616);
  &:hover{
    background-color: rgba(200, 253, 220, 0.658);
  }
}

tbody tr td:nth-child(odd){
  background-color: rgba(200, 253, 220, 0.658);
  &:hover{
    background-color: rgba(133, 216, 255, 0.616);
  }
}

tbody tr td:first-child{
  text-align: center;
  background-color: white;
  &:hover{
    background-color: white;
  } 
}*/

section {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  padding: 50px 0; 
  line-height: 2.3;
  font-size: 16px;
}

section ul{
  list-style: none;
}

section ul li, section h3 {
  text-align: center;
}

section h3{
  font-weight: 700;
}