/* 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." */
  

/* .......... FONTS .......... */ 

@import url('https://fonts.googleapis.com/css2?family=Barrio&family=Condiment&family=Montserrat+Alternates:ital,wght@0,500;0,800;1,500;1,800&family=Nabla:EHLT@24&display=swap');

/* .......... TEXT .......... */ 

body {
  background: lightblue url("images/big-city.jpg");
  background-size: cover;
  color: black;
  font-family: "Montserrat Alternates", Verdana, sans-serif;
}

h1 {
  font-family: "Nabla", Impact, sans-serif;
  font-size: 5em;
  margin: -15px 0px 0px 10px;
}

h2 {
  color: #07095D;
  font-family: "Montserrat Alternates", Verdana, sans-serif;
}

#subtxt {
  font-family: "Condiment", cursive;
  font-size: 2em;
  margin: -10px 0px 0px 0px;
  text-align: right;
  color: #07095D;
}


/* .......... CONTAINERS .......... */ 

#titles {
  width: 40em;
}

#sidebar {
  margin: 0px 20px 0px 10px;
  float: left;
  width: 15em;
}

#brim-behold {
  width: 100%;
}

#gallery {
  margin: 10px;
  padding: 20px;
  background-color: rgba(130, 197, 240, 0.85);
  border-radius: 5%;
  height: 40em;
  overflow: scroll;
  float: right;
  width: 70em;
}



/* For browsers that support `scrollbar-*` properties */
@supports (scrollbar-color: auto) {
  #gallery {
    scrollbar-color: cornflowerblue aquamarine;
  }
}

/* Otherwise, use `::-webkit-scrollbar-*` pseudo-elements */
@supports selector(::-webkit-scrollbar) {
  #gallery::-webkit-scrollbar {
    background: aquamarine;
  }
  #gallery::-webkit-scrollbar-thumb {
    background: cornflowerblue;
  }
  #gallery::-webkit-scrollbar {
    width: 10px;
  }
  #gallery::-webkit-scrollbar-thumb:hover {
    background: #B3FFE6;
  } 
}


/* .......... VIEW .......... */ 

#art-container {
  margin-top:0em;
  margin-bottom:0em;
  margin-left:auto;
  margin-right:auto;
  width:90em;
}

#art-content {
  float:right;
  width:72.5em;height:100%;
  margin: 10px 50px 10px 50px;
  padding: 10px;
  background-color: rgba(130, 197, 240, 0.85);
  border-radius: 5%;
}

.contentarea {
  margin-top:-0.357em;
  margin-bottom:0.357em;
  padding:1.071em;
  padding-top:0.357em;
  text-align:left;
}

#main-art {
  width: 44.286em;
  height: auto;
  margin-top: 0.357em;
}

#sec-art {
  width: 48.786em;
  height: auto;
  margin-top: 0.357em;
}

#art-body {
  float: right;
}

#art-desc {
  width: 25em;
  margin-top: 2em;
}

#date {
  float: right;
  color: #4F4F4F;
  font-family: "Arial Narrow", sans-serif;
  margin-top: -10px;
}

#art-thought {
  background-color: #4AB4EE;
  width: 100%;
  padding-top:0.357em;padding-bottom:0.357em;
}






/* Other screens */



@media screen and (max-width: 576px) {
  
  #titles {
    width: 16em;
    text-align: center;
  }
  
  h1 {
    line-height: 1em;
    font-size: 4em;
    margin: 10px 0px 10px 10px;
  }
  
  #subtxt {
    margin: 0px;
    font-size: 1.5em;
  }
  
  #brim-behold {
    width: 5em;
    height: auto;
    position: absolute;
    margin: -25px -50px 0px 0px;
    
  }
  
  #sidebar {
    margin: 0px;
  }
  
  #gallery {
    margin: 0px;
  }
  
  

  #art-container {
   margin-top:0em;
  margin-bottom:0em;
  margin-left:auto;
  margin-right:auto;
  width:68.571em; }
  
  #art-content {
    float:right;
  margin-top:0em;margin-right:1.071em;
  width:51.071em;height:100%;}
    
  #main-art {
    width: 48.929em }
    
  #sec-art {
  width: 39.5 em; }
  
  .art-desc {
    float: left;
    clear: both;
    width: 100%;}
    
  #art-body {
    width: 100%;
    }
    
    #art-desc {
      width: 39.5em;
      font-size: 20px;
    }
}














