/* styles.css */

a {
	color: inherit;
	text-decoration: none;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Trebuchet MS', sans-serif;
	background-image: url("images/stars.png");
	color: white;
}

.container {
    max-width: 800px;
    width: 100%;
	background-color: #333333;
}

.content {
    text-align: center;
    padding: 20px;
}

.spacing {
	margin-bottom: 10px;
}

.cool-thing {
  display: inline-block;
  padding: 10px;
  background-color: #333;
  border-radius: 8px;
  border: 2px solid #fff;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  color: #fff;
}


nav {
    margin-bottom: 20px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
	color: white;
}

img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
}

input, textarea {
    margin-bottom: 10px;
    padding: 8px;
    font-size: 16px;
}

button {
    padding: 10px;
    font-size: 16px;
    background-color: #4CAF50;
    color: #fff;
    cursor: pointer;
}
