@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
* a {
  text-decoration-line: none;
  color: white;
}
* ul {
  list-style-type: none;
}
* body {
  background-color: black;
  padding-top: 70px;
  color: white;
}

/*head Box*/
header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0px;
  background-image: linear-gradient(to bottom, lightblue, black, black);
  border-bottom: 2px solid gray;
}
header ul {
  width: 1000px;
  height: 70px;
  margin-left: 100px;
  display: flex;
}
header ul li {
  margin: auto 40px;
  font-size: 20px;
}

/*본문*/
section {
  width: 1500px;
  height: 500px;
  margin: 200px auto;
  display: flex;
}
section img {
  display: block;
  width: 750px;
  height: 500px;
}
section .section_TextBox {
  width: 750px;
  height: 500px;
  font-size: 60px;
  text-align: center;
}
section .section_TextBox p {
  margin-top: 90px;
}
section .section_TextBox small {
  font-size: 20px;
  color: rgb(213, 213, 213);
}
section .section_TextBox div {
  width: 100px;
  height: 50px;
  margin: 40px auto;
  font-size: 20px;
  line-height: 50px;
  background-color: blue;
  cursor: pointer;
}
section .section_TextBox div:hover {
  background-color: rgb(46, 118, 252);
}/*# sourceMappingURL=main.css.map */