* {
  margin: 0;
  padding: 0;
}

body {
  width: 1920px;
  height: 1080px;
  background: #001e64;
  padding: auto;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}

.container {
  width: 90%;
  height: 84%;
  margin: auto;
  /* background: skyblue; */
  overflow: hidden;
  position: relative;
}

.head {
  display: flex;
  margin: 30px auto;
  border-bottom: 1px solid #fff;
}

.head div {
  width: 20%;
  height: 100px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-right: 1px solid #fff; */
  font-size: 40px;
  font-weight: 700;
}

.head div:last-child {
  border-right: none;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  font-size: 30px;
  font-weight: 700;
  color: #fff;

}

ul {
  width: 100%;
  display: flex;
  /* flex-direction: column; */
  text-align: center;
}

ul li {
  width: 20%;
  list-style: none;
  padding: 30px 0 30px 0;
  display: flex;
  justify-content: space-around;
}

ul li div {
  width: 20%;
  text-align: center;
}

.btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.btn button {
  width: 180px;
  height: 46px;
}