*{
  margin: 0;
  padding: 0;
}
html,body{
  width: 100%;
  height: 100%;
}

.flex{
  display: flex;
}
.column{
  display: flex;
  flex-direction: column;
}
.column>.flex-1{
  flex: 1;
  min-height: 0;
}
body{
  background-color: #333;
  background-image: url('../image/background.jpg');
  background-repeat: no-repeat ;
  background-position: 0.00% 56.06% ;
  background-size: 160% ;
  background-color: transparent ;
}
.container{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
header{
  width: 100%;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  padding: 12px 0;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}




main{
  flex: 1;
  width: 100%;
  position: relative;
}
main>.nav{
  width: 100%;
  padding: 24px 0;
  text-align: center;
  background-color: #fff;
  color: #999;
  position: absolute;
  top: 0;

  font-size: 18px;
  box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
}
main>.content{
  /* padding-top: 80px; */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.text{
  color: #fff;
  margin-left: 30px;
  width: 480px;
}
.text>p{
  margin-top: 30px;
  font-size: 20px;
}





footer{
  width: 100%;
  height: 150px;
  padding: 12px 0;
  color: #fff;
}
footer>.content{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}
footer>.content>h5{
  font-size: 20px;
}
footer>.content>div{
  width: 100%;
  font-size: 20px;
}
.link{
  text-decoration: none;
  color: #fff;
  line-height: 18px;
  font-size: 14px;
}
.space-x-1 > :not([hidden]) + :not([hidden]) {
  margin-left: 4px;
}
.space-x-5 > :not([hidden]) + :not([hidden]) {
  margin-left: 20px;
}
.pointer{
  cursor: pointer;
  user-select: none;
}