/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

html, body {
  height: 100%;
  /* 渐变 */
  background: linear-gradient(90deg, #fae442 0%, #f9c33a 100%);
}

.container {
  background: url(./images/bg.jpg) no-repeat 50% 0;
  background-size: cover;
  max-width: 1920px;
  min-width: 1390px;
  height: 1864px;
  margin: 0 auto;
  position: relative;
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  /* background: #313131; */
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  margin: 0 30px;
}

.footer a:hover {
  color: #f9c33a;
  text-decoration: underline;
}
  