/* 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." */
/*
Color Refs:
Darker Slate Blue: #2e3b4b
Dull Gold: #b9995f
Grey: #eaeae8
White: #ffffff
*/
body {
  background-color: #2e3b4b;
  font-family: Georgia;
	background-image: url("Images/slate.png");
}
h1{
 color: #ffffff; 
 text-align: center;
 font-size: 60px;
}
h2{
  color: #ffffff; 
  text-align: center;
  font-size: 30px;
}

h3{
  color: #2e3b4b;
  font-size: 30px;
  text-decoration: underline;
  text-decoration-color: #b9995f;
}
h4{
  color: #2e3b4b;
  text-align: left;
}
p {
 color: #2e3b4b;  
}
.Window{
  width: 80%;
  border: 20px #b9995f;
  padding: 30px;
  color: #2e3b4b;
  background: #eaeae8;
  border-style: solid;
  
  margin: auto;
}
.socials{
  color: #b9995f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.name{
  color: #b9995f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.code{
  font-family: "Courier New"; 
}
.inside{
  border: 10px #b9995f;
  padding: 10px;
  border-style: solid;
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #ce8888;
}

a:link {
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: #ffffff;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: #eaeae8;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: #eaeae8;
  background-color: transparent;
  text-decoration: underline;
}