/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  min-height: 100%;
  height: 100%;
  overflow: auto;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  overflow: visible;
  height: 100%;
  color: #f3b31e;
  background-color: #f3b31e;
  background-repeat: repeat;
  transition: border 0.8s;
  margin: 0;
}

.main {
  padding-top: 2rem;
  height: 100%;
  width: 100%;
  border-width: 1rem;
  border-style: solid;
  border-color: #f3b31e;
  overflow-y: scroll;
  position: fixed;
  transition: border 0.4s;
}

.main.in {
  border-width: 2rem;
  border-color: white;
  border-style: solid;
}

#drop {
  width: 35px;
  margin: 0 auto;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 40px;
}

#bottomSymbol {
  width: 50px;
  margin: 1rem auto;
  display: block;
}

#logo {
  width: 100vh;
  position: absolute;
  display: none;
  padding: 1rem 0 1rem;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.5s;
  transform: translate3d(0, -20px, 0);
  right: 20px;
  left: 20px;
  top: 20px;
  bottom: 20px;
}

#logo.in {
  opacity: 0.03;
  transform: translate3d(0, 0, 0);
}

#logo.fade {
  opacity: 0.01;
  transform: scale(0.96);
}

.contact {
  line-height: 2rem;
  color: black;
  text-align: center;
  letter-spacing: 0.2rem;
  display: block;
  padding-top: 1rem;
}

.guide-lines {
  position: fixed;
  color: black;
  background: white;
  top: 0;
  left: 0;
  padding: 4rem;
  margin: 3rem;
  height: calc(100% - 6rem);
  width: calc(100% - 6rem);
  z-index: 99999;
  font-size: 28px;
  line-height: 2.4rem;
  overflow: scroll;
  font-size: 1.5rem;
}

.guide-lines .close {
  position: fixed;
  right: 0;
  top: 0;
  background: white;
  border: 4px solid #f3b31e;
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
  font-size: 2rem;
  line-height: 0;
  z-index: 999999;
  cursor: pointer;
}

.guide-lines h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.guide-lines ul {
  color: #343434;
  list-style: disc;
  list-style-position: outside;
  padding-left: 1rem;
}

.guide-lines ul li {
  margin-bottom: 0.6rem;
}

.tattooers {
  text-align: center;
  margin: 3rem;
  position: relative;
}

.tattooers a.item {
  cursor: pointer;
}

.tattooers a.item:hover {
  color: white;
}

.tattooers .item {
  color: black;
  clear: both;
  display: block;
  float: left;
  text-decoration: none;
  text-transform: uppercase;
  text-align: left;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 4rem;
  padding: 1.2rem 0;
  letter-spacing: 0.8rem;
  line-height: 26.4px;
  transition: all 0.2s ease;
  opacity: 0;
  font-weight: 700;
  transform: translate3d(0, 30px, 0);
}

.tattooers .item.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tattooers .item .line {
  border-bottom: 1px solid #000;
  width: 80px;
}

.tattooers span.item {
  display: block;
  float: left;
  font-size: 1rem;
  letter-spacing: 0.4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 3s ease-in normal forwards;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-thumb {
  background: white;
}

::-webkit-scrollbar-track {
  background: white;
}

body {
  scrollbar-face-color: white;
  scrollbar-track-color: white;
}

@media (max-width: 800px) {
  .main {
    position: relative;
  }

  .main.in {
    border-width: 1rem;
    border-color: white;
    border-style: solid;
  }

  #drop {
    width: 20px;
    margin: 0 auto 10px;
    display: block;
  }

  #bottomSymbol {
    width: 30px;
    margin: 1rem auto;
    display: block;
  }

  #logo {
    width: 100%;
    padding: 0 1rem;
  }

  .guide-lines {
    font-size: 1rem;
    padding: 1.6rem;
    margin: 0;
    line-height: 2rem;
    height: calc(100%);
    width: calc(100%);
    border: 24px solid #f3b31e;
  }

  .guide-lines h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .guide-lines p {
    color: #343434;
  }

  .guide-lines ul {
    list-style: disc;
    list-style-position: outside;
    padding-left: 1rem;
    color: #343434;
  }

  .tattooers .item {
    font-size: 0.9rem;
    padding: 0.3rem 0;
    letter-spacing: 0.4rem;
  }

  .tattooers span.item {
    letter-spacing: 0.2rem;
    font-size: 0.7rem;
  }
}
