* {
  box-sizing: border-box;
  font-family: "Lexend", serif;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #6c6f70;
  color: #494C4E;
}

div#header {
  background-color: #3B3D42;
  color: #DBD4CE;
  padding: 10px;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  text-align: center;
}
div#header > h1 {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}
div#header > h2 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.primary-color {
  color: #b68233;
}

div#main {
  display: grid;
  height: 100%;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1rem;
}
div#main > div.download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #3B3D42;
  color: #DBD4CE;
  padding: 1rem;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  grid-column: 2/4;
  font-weight: 900;
}
div#main > div.download > h3 {
  font-size: 2rem;
  margin: 0;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}
div#main > div.download > button {
  width: 40%;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: #3B3D42;
  color: #DBD4CE;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
div#main > div.download > button:hover {
  background-color: #b68233;
  color: #DBD4CE;
}
div#main div.category-header {
  background-color: #3B3D42;
  color: #DBD4CE;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
  grid-column: span 4;
  height: 100%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#main div.category-header > h3 {
  font-size: 2rem;
  margin: 0;
  width: 100%;
  text-align: center;
}
div#main div.asset-card {
  position: relative;
  height: 20rem;
  background-color: #3B3D42;
  color: #DBD4CE;
  padding: 1rem;
  padding-top: 0;
  overflow: hidden;
  border-radius: 5px;
  transition: all 0.3s;
}
@media (max-width: 500px) {
  div#main div.asset-card {
    grid-column: span 4;
  }
}
@media (min-width: 500px) {
  div#main div.asset-card {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  div#main div.asset-card {
    grid-column: span 1;
  }
}
div#main div.asset-card:hover {
  box-shadow: inset 0 0 2rem #000000;
}
div#main div.asset-card:hover > img {
  box-shadow: 0 0 2rem #000000;
}
div#main div.asset-card:hover > div > button.download-btn {
  box-shadow: 0 0 2rem #000000;
}
div#main div.asset-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 20%;
}
div#main div.asset-card > div > h3 {
  font-size: 1.5rem;
  margin: 0;
}
div#main div.asset-card > div > button.download-btn {
  display: flex;
  align-items: center;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: #3B3D42;
  color: #DBD4CE;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
div#main div.asset-card > div > button.download-btn:hover {
  background-color: #b68233;
  color: #DBD4CE;
}
div#main div.asset-card > img, div#main div.asset-card > video {
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  transition: all 0.3s;
}
div#main div.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s;
}
div#main div.pop-up.hidden {
  display: none;
}
div#main div.pop-up > div {
  position: relative;
  background-color: #3B3D42;
  color: #DBD4CE;
  padding: 2rem;
  border-radius: 5px;
  width: 80%;
  max-width: 800px;
}
div#main div.pop-up > div > h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 900;
  width: 100%;
}
div#main div.pop-up > div > button.close-btn {
  display: flex;
  position: absolute;
  top: 1rem;
  right: 1rem;
  align-items: center;
  font-size: 1rem;
  padding: 0.5rem 0.5rem;
  border-radius: 5px;
  background-color: #3B3D42;
  color: #DBD4CE;
  border: none;
  transition: all 0.3s;
  cursor: pointer;
}
div#main div.pop-up > div > button.close-btn:hover {
  background-color: #b68233;
  color: #DBD4CE;
}
div#main > form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column: span 4;
}
div#main > form > h3 {
  font-size: 2rem;
  text-align: center;
  font-weight: 900;
  width: 100%;
}
div#main > form > input, div#main > form > h3, div#main > form > select {
  width: 100%;
  margin-bottom: 1rem;
  max-width: 500px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: none;
  background-color: #3B3D42;
  color: #DBD4CE;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
div#main > form > input:focus, div#main > form > h3:focus, div#main > form > select:focus {
  outline: none;
  box-shadow: inset 0 0 2rem #000000;
}
div#main > form > button {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: #3B3D42;
  color: #DBD4CE;
  border: none;
  transition: all 0.3s;
}
div#main > form > button:hover {
  background-color: #b68233;
  color: #DBD4CE;
}

div#footer {
  background-color: #3B3D42;
  color: #DBD4CE;
  padding: 1rem;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  height: 100%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#footer > p {
  font-size: 2rem;
  margin: 0;
  width: 100%;
  text-align: center;
}

/*# sourceMappingURL=styling.css.map */
