/* Link stuff */
a {
  outline-color: transparent;
  transition: all 0.1s;
}

a:link {
  text-decoration: none;
  color: #ec615c;
}

a:visited {
  color: #ec615c;
}

a:focus {
  color: #fda269;
}

a:hover {
  text-decoration: none;
  color: #fda269;
}

a:active {
  color: #fda269;
}

/*website stuff*/

:root {
  color: #803706;
}

html {
  scrollbar-color: #ec615c rgba(0, 0, 0, 0.0);
}

body {
  background: white;
  background-size: 100%;
  font-family: Verdana;
  margin: 60px 140px;
}

#title-container {
  display: flex;
  background-color: #D9D9D9;
  height: 175px;
  align-items: center;
  justify-content: center;
}

#nav-container {
  display: flex;
  background-color: #fbe9d9;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.nav-txt {
  display: flex;
  justify-content: center;
  column-gap: 90px; 
  margin: 0px 220px;
  color: #fda269;
  font-size: 20px;
  text-align: center;
}

.nav-txt:hover {
  cursor: default;
}

.main-container {
  display: flex;
  background-color: #fbe9d9;
  height: fit-content;
  min-height: 550px;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}

.margin {
  background-color: #fbe9d9;
  height: 60px;
}

.emoji {
  width: 20px;
  margin: 0px 5px;
}

small {
  font-size: 0.6em;
}

footer {
  display: flex;
  background-color: #fbe9d9;
  justify-content: center;
  align-items: center;
  gap: 35px;
  color: #803706;
  font-size: 16px;
  height: 60px;
}

/*Art page gallery*/
.art-posts {
  display: flex;
  background-color: #e3ac9b;
  min-height: 750px;
  width: 890px;
  padding: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.art-post {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 300px;
}

.art-post img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.art-tags-container {
  display: flex;
  background-color: #9a6a5a;
  height: 40px;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.art-tag {
  display: inline-block;
  color: #fbe9d9;
  font-size: 15px;
}

.art-img:hover {
  cursor: zoom-in;
}

/*Art img on click*/

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 16, 18, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  width: auto;
  max-height: 600px;
  padding: 30px;
}

.modal #img01:hover {
  cursor: zoom-out;
}

/*Art tag filter values*/
[value="All"]:checked ~ .art-posts [data-category] {
  display: block;
}
[value="Animation"]:checked ~ .art-posts .art-post:not([data-category~="Animation"]),
[value="Paid-Work"]:checked ~ .art-posts .art-post:not([data-category~="Paid-Work"]),
[value="Schoolwork"]:checked ~ .art-posts .art-post:not([data-category~="Schoolwork"]),
[value="Character-Design"]:checked ~ .art-posts .art-post:not([data-category~="Character-Design"]),
[value="Original-Art"]:checked ~ .art-posts .art-post:not([data-category~="Original-Art"]),
[value="Fanart"]:checked ~ .art-posts .art-post:not([data-category~="Fanart"]),
[value="2D-art"]:checked ~ .art-posts .art-post:not([data-category~="2D-art"]),
[value="3D-art"]:checked ~ .art-posts .art-post:not([data-category~="3D-art"]),
[value="Other"]:checked ~ .art-posts .art-post:not([data-category~="Other"]) {
  display: none;
}

[value="All"]:checked ~ .filters [for="All"],
[value="Paid-Work"]:checked ~ .filters [for="Paid-Work"],
[value="Schoolwork"]:checked ~ .filters [for="Schoolwork"],
[value="Character-Design"]:checked ~ .filters [for="Character-Design"],
[value="Original-Art"]:checked ~ .filters [for="Original-Art"],
[value="Fanart"]:checked ~ .filters [for="Fanart"],
[value="2D-art"]:checked ~ .filters [for="2D-art"],
[value="3D-art"]:checked ~ .filters [for="3D-art"],
[value="Other"]:checked ~ .filters [for="Other"]{
  color: #fbe9d9;
}

[type="radio"] {
  position: absolute;
  left:-9999px;
}

/*Art page tag filter*/
.filters * {
  display: grid;
  flex-direction: column;
  width: fit-content;
}

.filters label {
  line-height: normal;
  margin: 5px 0px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: all 0.1s;
}

.filters label:hover {
  color: #fbe9d9;
}

#filter-box {
  display: flex;
  flex-flow: column;
  box-sizing: border-box;
  background-color: #e3ac9b;
  width: 250px;
  height: 550px;
  padding: 30px;
  gap: 40px;
  align-self: flex-start;
  position: sticky;
  top: 0px;
  align-items: center;
  justify-content: center;
}

#filter-box p {
  margin: 0px;
  text-align: center;
  font-size: 40px;
}

/*"Incomplete Site" warning*/
#warning-container {
  color: #f7854e;
  background-color: #fbe9d9;
  height: 200px;
  align-content: center;
}

#warning-container h1 {
  font-size: 26px;
  text-align: center;
}

#warning-container p {
  font-size: 16px;
  text-align: center;
}