@import url("./styles/top.css");
@import url("./styles/center.css");
@import url("./styles/bottom.css");

* {
  box-sizing: border-box;
}

body,
h1,
h2,
p {
  margin: 0;
  padding: 0;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("./assets/Orion_cancel.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

body {
  margin: 0;
  background: no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 1px 1px 2px #242424;
}

main {
  padding: 15px 20px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
