/* 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." */
:root {
    --main-color: rgb(185, 4, 4);
    --main-font-size: 12px;
    --main-line-height: 20px;
}


 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* main background */

body{
    width: 100vw;
    height: 100vh;
    overflow: scroll;
    position: relative;
    background-color: #7403A0;
    

/* Intro box, reminder: decorate box, add typography and colored text */

}
header{
    position: absolute;
    top: calc(50% - 245px);
    left: calc(40% - 235px);
    width: 825px;
    height: 225px;
    padding: 30px;
    border: 6px double black;
    outline: 4px black;
    border-radius: 5px;
    background-color: white;
}

/* Buttons need to be decorated and text changed */

.button {
  box-shadow: inset -1px -1px #0a0a0a, inset 1px 1px #fff, inset -2px -2px grey, inset 2px 0px #dfdfdf;
  list-style: none;
  border-radius: 0px;
  width: auto;
  padding: 5px;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  background: #c9c9c9;
  position: relative;
  left: 700px;
  bottom: -370px;
}

/* HOLDS MY BUTTONS HORIZONTALLY*/
ul > li {
    display: inline-block;
}

/* ART gallery box + scrollbar */

main{   
    overflow: scroll;
    position: relative;
    top: calc(100% - 245px);
    left: calc(20% - 235px);
    width: 1400px;
    height: 1225px;
    padding: 30px;
    border: 6px red;
    outline: 4px black;
    border-radius: 5px;
    background-color: white;
 }
 
main:-webkit-scrollbar {
   width: 0;
   background: transparent;
 }
 
main:-webkit-scrollbar-thumb{
   background: transparent;
  }
main:-webkit-scrollbar-thumb:hover {
  background: transparent;
}

container{
  padding: 30px;
  margin: 0;
  width: 1340px;
  height: 1225px;
}

.container-img{
  display: inline;
}
 
.Title{
  text-transform: uppercase;
  color: black
}
 
 /* flexcontainer{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 1vw;
  flex-wrap: wrap;
  gap: 10px;
 } */
