/*CSS CUSTOM SELECTORS*/
:root{
  --header-bg:#6495ED;
  --text-col:#ffffff;
  --text-shadow: #323232;
}
h1{
  /*Text shadow for header*/
}

header{
  color:var(--text-col);
  background-color: var(--header-bg);
  width:100%;height:100vh;
  /*margin:auto; */
  padding:30px 0px 10px 0px;
  text-align:center;
}

main{
  /*width:100%; height:50vh;
  margin:auto;
  padding:10px 0px;
  text-align: center;
  */
}
.intro-statement{
  display: inline-block;
  width:50%;
  text-shadow:3px 1px 10px var(--text-shadow) ;
}

.greeting{
  font-size: 1.3em;
  margin:5px 0px;
}
.prof-pic-con{
  display: inline-block;
  width:50%;
}

.prof-pic{
  /*height:360px; width:300px;*/
  height:45%; width:45%;
}

/**~MEDIA QUERIES~**/