body{
    font-family: "Josefin Sans", sans-serif ;
    text-align: center;
    background-color: #fae197;
    color: rgb(236, 255, 201);
    background-image: url(images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
}   

h1{
    background-color: #288d00;
    box-shadow: 5px 5px 0px hsl(96, 100%, 20%);
    border-radius: 15px;
    display: inline-block;
    padding: 15px;
}

#artbox li {  /*names*/
    float: right;
    background-color: #eccb68;
    border-radius: 15px;
    box-shadow: 5px 5px 0px rgb(206, 134, 0);
    font-size: 50px;
    padding: 15px;
    margin: 10px;
    width: 500px;
}

#artbox li p{  /*description*/
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 0;
    margin-bottom: 59px;
    font-size: 30px;
    max-height: 70px;
    height: 70px;
}

#artbox img{
    border-radius: 15px;
    border: #f7751e 15px solid;
    box-shadow: 5px 5px 0px rgb(206, 134, 0);
    background-color: #fae197;
    margin: 5px;
}

#artbox{
    background-color: #d8b23f;
    border-radius: 15px;
    box-shadow: 5px 5px 0px rgb(206, 134, 0);
    display: inline-block;
    overflow: scroll;
    width: 900px;
    height: 720px;
    padding-right: 20px;
}

a{
    color: rgb(236, 255, 201);
    text-decoration: none;
    font-size: 25px;
}

#navbar ul {
  list-style-type: none;
  border-radius: 10px;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  background-color: orange;
  box-shadow: 5px 5px 0px rgb(206, 134, 0);
}

#navbar li{
    float: left;
    display: block;
    padding: 14px 16px;
}

#navbar li:hover{
    background-color: #8a732d;
    box-shadow: rgb(206, 134, 0) 5px 5px 0px;
    border-radius: 10px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb{
    background-color: hsla(45, 66%, 63%, 0.781);
    border-radius: 15px;
}

::-webkit-scrollbar-corner{
    opacity: 0;
}

hr{
    border-top: 10px solid #c29f38;
    border-bottom: none;
    border-radius: 15px;
    box-shadow: 3px 3px 0px #b89737;
}