/* || General setup */

html, body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
  background-image: url(https://havefunbesafe.neocities.org/Images/stars.jpg);
  background-repeat: repeat;
  background-size: 300px 300px

}

body {
  width: 100%;
  margin: 0 auto;
}
            
.container {
  position: absolute;
  width: 90%;
}

.white-box {
  background-color: #ffffff;
  width: 100%;
            }

.overlay-image {
  position: absolute;
  top: 15px;
  right: auto;
  left: auto;
  z-index: 10;
  width: 480px;
  height: 212px;
}

/* || typography */

h1, h2, h3 {
  font-family: 'Helvetica', sans-serif;
  color: black;
}

p, input, li {
  font-family: 'Arial', sans-serif;
  color: black;
}

h1 {
  font-size: 4rem;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 10px black;
}

h2 {
  font-size: 3rem;
  text-align: center;
}

h3 {
  font-size: 2.2rem;
}

p, li {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* || header layout */

nav, article, footer {
  background-color: white;
  text-align: center;
}

nav {
  height: 50px;
  background-color: #ff80ff;
  display: flex;
  margin-bottom: 30px;
}

nav ul {
  padding: 0;
  list-style-type: none;
  flex: 2;
  display: flex;
}

nav li {
  display: inline;
  text-align: center;
  flex: 1;
}

nav a {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  text-decoration-style: solid;
  color: black;
}

nav form {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2em;
}

main {
  text-align: center;
  margin-left: 100px;
  margin-right: 100px;
}
article {
  text-align: center;
  background-color:  #ff80ff;
  border-color: #ff80ff;
}

footer {
  margin-top: 10px;
  background: transparent;
}
