body {
    background-color: #000000;
    color: #e0e1dd;
    
   
}

h1 {
    font-size: 50px;         
    font-family: sans-serif;  
    font-weight: bold;        
    color: #000000;               
    text-align: center;       
    margin: 20px 0;            
    padding: 10px;             
    background-image: linear-gradient(rgba(0, 0, 0, 0.2),rgba(0, 0, 0, 0.2)),url('img/BackgroundImage.jpg'); 
    border-radius: 8px;       
  }
  
.welcome {
    line-height: 5;
    font-size: 30px;
    color: brown;
    font-style: italic;
}
.welcome:hover {
    color: #2ecc71;            
    cursor: pointer; 
}

#container {
    padding: 50px;
    display:flex; 
    flex-direction:row;
    align-items: center;
    justify-content: center;
}


#gallery {
    font-family: sans-serif;
    font-size: 24px;
    width: 100%;
    height: auto;
    display: flex;    
    flex-direction: row;  
    justify-content: center;
    
}
/*link styling*/
a {
    color: #f26419;           
    text-decoration: none;     
    font-weight: bold;         
  }
  
  /* mouse hovers over the link*/
  a:hover {
    color: #2ecc71;           
    text-decoration: underline; 
    cursor: pointer;          
  }
  
  
  
  /* Visited link */
  a:visited {
    color: #ffc300;            
    text-decoration: none;     
  }

  
