
@font-face {
    font-family: "ShantellSans";
    src: url("fonts/ShantellSans-Regular.ttf");
}

@font-face {
    font-family: "ShantellSans";
    src: url("fonts/ShantellSans-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: "ShantellSans";
    src: url("fonts/ShantellSans-Italic.ttf");
    font-style: italic;
}

@font-face {
    font-family: "ShantellSans";
    src: url("fonts/ShantellSans-BoldItalic.ttf");
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: "ShantellSans";
    margin: 10px;
    background-color: #ffffff;
    background-size: 100%;
    color: #ffffff;
    background-image: url("images/other-assets/altbg.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    cursor: url("images/other-assets/cursor.png"), default;
}

* {
    box-sizing: border-box;
}

#topbar {
  width: 100%;
  height: 30px;
  padding: 0px;
  font-size: smaller;
}

#container {
    max-width: 900px;
    margin: 0 auto;
}

a {
  color: #83c6a5;
  font-weight: bold;
  text-decoration:none;
}

a:hover {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #83c6a5;
  text-decoration-thickness: 1px;
  cursor: url("images/other-assets/cursor2.png"), default;
}

#header {
    width: 100%;
    background-color: #935656;
    height: 300px;
    background-image: url("images/other-assets/altheader.webp");
    background-size: 100%;
    border-radius: 25px 25px 0px 0px;
} 

#title {
  width: 100%;
  font-size: 25px;
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #fcc47d;
  text-decoration-thickness: 3px;
}

/* navigation section!! */
#navbar {
    height: 40px;
    background-color: #361a27;
    width: 100%;
    border-radius: 0px 0px 25px 25px;
}

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

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

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

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

#flex {
    display: flex;
}

        /* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
    background-color: #12474a;
    border-radius: 25px;
    width: 200px;
    padding: 20px;
    font-size: smaller;
    /* this makes the sidebar text slightly smaller */
}

        /* this is the color of the main content area,
between the sidebars! */
main {
    background-color: #167d84;
    flex: 1;
    border: 3px solid #fcc47d;
    border-radius: 25px;
    padding: 20px;
    order: 2;
}

#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}

footer {
    background-color: #361a27;
    border-radius: 25px;
    width: 100%;
    height: 35px;
    padding: 10px;
    text-align: center;
    font-size: 10px;
}

h1,
h2,
h3{
  color: #fcc47d;
}

strong {
    /* this styles bold text */
    color: #fcc47d;
}

b {
    color: #fcc47d;
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #361a27;
    height: 200px;
    border: 1px solid #fcc47d;
    padding: 10px;
    overflow: auto;
    margin: 0 auto;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.centertext {
  text-align: center;
}

.art {
  display: block;
  margin: auto;
  width: 60%;
}

div.gallery {
  border: 1px solid #fcc47d;
  border-radius: 25px;
}

div.gallery:hover {
  background-color: #12474a;
}

div.gallery img {
  width: 100%;
  border-radius: 25px 25px 0px 0px;
  height: auto;
}

.arttext {
  padding: 10px;
  border-radius: 0px 0px 25px 25px;
  background-color: #12474a;
  text-align: center;
}

.responsive {
  padding: 6px;
  float: left;
  width: 24.99999%;
}

/* gallery slideshow */
.mySlides {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 25px;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 25px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.3);
}

.numbertext {
  color: #f2f2f2;
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/* end gallery slideshow */

#status {
  background-color: #361a27;
  width: 100%;
  height: 100px;
  border: 1px solid #fcc47d;
  padding: 10px;
  overflow: auto;
  margin: 0 auto;
  cursor: url("images/other-assets/cursor.png"), default;
}

select {
  width: 60%;
  padding: 5px;
  border: none;
  border-radius: 5px;
  background-color: #935772;
  cursor: url("images/other-assets/cursor2.png"), default;
  font-family: "ShantellSans";
  color: #361a27;
  text-align: center;
}

hr {
  color: #fcc47d;
}

#button {
  height: 31px;
  width: 88px;
  background-image: url("images/other-assets/altbutton.gif");
  background-size: 100%;
}

        /* BELOW THIS POINT IS MEDIA QUERY */

        /* so you wanna change the width of your page? 
by default, the container width is 900px.
in order to keep things responsive, take your new height,
and then subtrack it by 100. use this new number as the 
"max-width" value below
*/

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }
   
  

            /* the order of the items is adjusted here for responsiveness!
  since the sidebars would be too small on a mobile device.
  feel free to play around with the order!
  */
    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
.responsive {
    width: 49.99999%;
    margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
