/*=============================

        Default Values

Font: Reef, sans serif

Colors:
1. Black Pearl: #1e272e;
2. Chrome Yellow: #ffa801;
3. Grey: #777;

==============================*/
/*------------------------------
        Basic setup
------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Reef;
  src: url(../fonts/Reef.otf);
}
body {
  font-family: "Reef", sans-serif;
  color: #1e272e;
  text-rendering: optimizeLegibility;
}

li {
  list-style: none;
  display: inline-block;
}

a {
  text-decoration: none;
}

/*------------------------------
        Header Style
------------------------------*/
html {
  scroll-behavior: smooth;
}

header {
  width: 100%;
  background-color: #1e272e;
  box-shadow: 0px 4px 8px #777;
}
header .heading-div {
  max-width: 1400px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
header .heading-div h1 {
  color: #ffa801;
  font-size: 38px;
  letter-spacing: 1px;
}
header .heading-div .nav-menu a {
  color: #fff;
  padding: 5px 30px;
  font-size: 20px;
  border-right: 1px solid #ffa801;
  transition: color 0.3s ease-in-out;
}
header .heading-div .nav-menu a:last-child {
  border: none;
}
header .heading-div .nav-menu a:hover {
  color: #ffa801;
}

/*------------------------------
        Header Image
------------------------------*/
.header-image {
  max-width: 1400px;
  margin: 30px auto;
}
.header-image img {
  width: 100%;
}

/*------------------------------
        Artist Section
------------------------------*/
.artists-text {
  display: flex;
  max-width: 1400px;
  margin: 50px auto;
  justify-content: space-between;
  border-bottom: 2px solid #777;
  padding-bottom: 35px;
}
.artists-text .artist {
  margin-right: 50px;
}
.artists-text .artist:last-child {
  margin-right: 0;
}
.artists-text .artist .artist-name {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.artists-text .artist .artist-name .shape {
  width: 16px;
  height: 32px;
  position: relative;
  background-color: #ffa801;
  margin-right: 30px;
}
.artists-text .artist .artist-name .shape::before {
  content: "";
  position: absolute;
  right: -16px;
  border: 0;
  width: 0;
  height: 0;
  border-left: 16px solid #ffa801;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
.artists-text .artist .artist-name h3 {
  text-transform: uppercase;
  font-size: 22px;
}
.artists-text .artist a {
  font-size: 18px;
  color: #ffa801;
  transition: all 0.3s ease;
}
.artists-text .artist a:hover {
  color: #1e272e;
}
.artists-text .artist p {
  margin-bottom: 7px;
}

/*------------------------------
        Artist Work
------------------------------*/
.artist-work {
  max-width: 1400px;
  margin: 0 auto;
  text-align: right;
  margin-bottom: 50px;
}
.artist-work .work-pictures {
  margin: 15px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.artist-work .work-pictures img {
  filter: grayscale(100%);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 4px solid transparent;
}
.artist-work .work-pictures img:hover {
  filter: grayscale(0);
  border: 4px solid #ffa801;
  transform: scale(1.1);
}
.artist-work a {
  font-size: 20px;
  color: #ffa801;
  transition: all 0.3s ease-in-out;
}
.artist-work a:hover {
  color: #1e272e;
}

/*------------------------------
            Footer
------------------------------*/
footer {
  background-color: #1e272e;
  color: #fff;
}
footer div {
  max-width: 1400px;
  margin: auto;
}
footer div p {
  padding: 20px;
  font-size: 18px;
}
footer div p a {
  color: #ffa801;
}

/*------------------------------
        Back to Top
------------------------------*/
.top {
  position: fixed;
  right: 3%;
  bottom: 9%;
  display: block;
  background-color: #ffa801;
  color: #fff;
  padding: 12px;
  border-radius: 5px;
  text-shadow: 2px 2px 1px #777;
  transition: all 0.2s linear;
}
.top:hover {
  background-color: #1e272e;
  border-radius: 50%;
}

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