/* 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: #81ADFF;
  color: red;
  font-family: TimesNewRoman;

}



#home #homeimage {
  position:relative;
     padding: inherit;
  margin:auto;
  display: block;
     
  
}

#homeva #homeimageva {
  position:relative;
     width: 300px;
  height: auto;
    
  
}


 #visualart #mailart {
   display: inline-block;  
   
   
}       

#visualart #visualartimage {
  position:absolute;
  margin-top: 100px;
  margin-left: 300px;
  
}

 #navbar {
                height: 40px;
                background-color: #81adff;
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: auto;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: #ff0000;
                /* navbar text color */
                font-weight: 800;
                font-size: 30px;
                text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
            
#navbar2 {
                height: 40px;
                background-color: #81adff;
                /* navbar color */
                width: 100%;
            }

            #navbar2 ul {
                display: flex;
                padding: 0;
                margin: auto;
                list-style-type: none;
                justify-content: space-around;
            }

            #navbar2 li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar2 li a {
                color: #ff0000;
                /* navbar text color */
                font-weight: 900;
                font-size: 30px;
              text-decoration: none;
                /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar2 li a:hover {
                color: #a49cba;
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
        
  
  div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: right;
  width: 180px;
 
}

div.gallery:hover {
  border: 10px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
  
}

.desc {
  padding: 10px;
  text-align: center;
}
           
        
  
