/*
  This is the CSS file for my homepage. It has a dark grey and blue-green theme.
*/

body {
  height: 100%;
  position: absolute;
  left: 50px;
  right: 50px;
}

body > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

h1 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 80px;
  color: rgb(98, 114, 100);
  text-shadow: 2px 2px black;
  text-align: center;
  width: 85%;
  margin-right: 100px;
  margin-left: 100px;
}

footer {
  min-height: 50px;
}

#home {
  background-image: url("images/rainier-background.jpg");
  background-size: cover;
  background-position: 50% 45%;
  width: 70%;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-evenly;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: 30px;
}

#home div {
  display: flex;
  align-items: center;
}

#home div:last-child {
  flex-direction: column;
  margin-top: 80px;
}

#home > div > img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-left: 150px;
}

#home p {
  padding: 5px;
  background-color:rgba(98, 114, 100, 0.75);
  color: rgb(200, 200, 200);
  width: 50%;
  text-align: center;
}

#contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  padding: 5px;
  background-color:rgba(98, 114, 100, 0.75);
}

#contact img {
  width: 36px;
  height: 36px;
  padding-right: 5px;
}

#contact a {
  color: rgb(200, 200, 200);
}

#contact a:hover {
  color: white;
}