/*
  This is the CSS file for my homepage. It has a dark grey and blue-green theme.
*/

html {
  height: 100%;
}

body {
  height: 95%;
}

header {
  height: 50%;
  width: 90%;
  margin: auto;
  padding: 50px;
  background-image: url("images/rainier-background.jpg");
  background-size: 100%, 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

header h1 {
  margin: 0px;
  padding: 10px;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 50px;
  color: rgb(98, 114, 100);
  text-shadow: 2px 2px black;
  text-align: center;
  background-color:rgba(112, 128, 144, 0.75);
}

header img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

main {
  margin-top: 20px;
}

main p, #contact {
  margin: auto;
  padding: 10px;
  background-color:rgba(98, 114, 100, 0.75);
}

main p {
  color: rgb(200, 200, 200);
  width: 50%;
  text-align: center;
}

#contact {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact img {
  width: 36px;
  height: 36px;
  padding-right: 5px;
}

#contact a {
  color: rgb(200, 200, 200);
}

#contact a:hover {
  color: white;
}