/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("https://soul-coloured-blue.neocities.org/starry.gif");
  background-repeat: repeat;
  height: 100vh;
  color: #000;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  margin: 30px;
  padding: 30px;
}

h1 {
  color: #48639C;
  text-align: center;
}

.container {
  display: flex;
  align-items: center;        /* vertical alignment */
}

.container img {
  margin-right: auto;         /* pushes header to the right */
}

.container h1 {
  flex: 1;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.content {
  background-color: #B1E5F2;
  margin: 0 2px 0 2px;
  padding: 20px;
  height: 600px;
}

/*navbar*/

h2, p {
  margin: 10px;
}

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

ul li a {
  display: block;
  color: #000;
  padding: 14px 16px;
  border: 2px solid #000;
  text-decoration: none;
  background-color: #B1E5F2;
  border-radius: 15px 15px 0 0;
}

ul li a:hover:not(.active) {
  background-color: #96DCED;
}

ul li .active {
  background-color: #48639C;
}
