/* 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 {
  font-size: 14px;
  color: red;
  font-family: "Roboto Condensed", Helvetica;
  font-weight: 500;
  margin: 0;
  height: 100%;
  background: 
   linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(84, 7, 4, 0.75) 100%),
   url('https://clawitzer.neocities.org/background.jpg') no-repeat;
  background-size: cover;
}

header {
  display: flex;
  justify-content: center;
  background: url("https://clawitzer.neocities.org/header.jpg");
  background-color: black;
  padding-bottom: 10px;
}

.wrapper {
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  border-width: 5px;
  background-color: rgba(0,0,0,0.5);
  border-color: black;
  border-style: ridge;
  }

.left {
  float: left;
  flex-direction: column;display: flex;
  text-align: center;
  width: 150px;
}

.middle {

}

.right {
  flex-direction: column;display: flex;
  width: 150px;
}

.footer {
  margin: 20px;
}

nav {
	border: 2px solid;
	border-radius: 8px;
	padding: 5px;
	background: grey;
}

h1 {
  font-size: 4.5em;
  margin: 5px;
  text-shadow: 4px 4px black, 0 0 10px red;
}

h2, h3 {
  font-size: 2em;
}

h1, h2, h3 {
  font-weight: 800;
  text-align: center;
  font-variant: small-caps;
  color: white;
}

.container {
  display: inline-block;
  margin: 5px;
  padding: 0.5em 1em;
  border-style: solid;
  border-width: 2px;
  border-color: white;
  background-color: rgb(0,0,0);
  box-shadow: 0 0 3px white; 
}

.row {
  display: flex;
  flex-direction: row;
}

/* for centering images mainly */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.centre {
  border: 2px dotted;
  flex: 50%;
  padding: 10px;
}

.side {
  flex: 13%;
  padding: 10px;
  }

footer {
	text-align: center;
	font-size: 0.8rem;
}