/* 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 {
  background-color: powderblue;
  color: black;
  font-family: Serif;
}
headerbox{
border:10px; 
background-color: powderblue;
font-family:Times;
  }
  
  
#headercontainer {
    background-image: url('https://pin.it/70gtCZ254');
    background-position: center;
    background-size: cover;
    border: 3px solid lightgrey;
    border-radius: 30px 30px 0px 0px;
    box-shadow: 0 0 13px 13px white inset;
    font-weight: 600;
    height: 34vh;
    position: relative;
    width: 100%;
     }
    
    
.header-text {
    color: brown;
    left: 10px;
    padding-top: 10px;
    position: absolute;
    text-align: left;
    text-shadow: 2px 1px white;
    top: 20px;
  }