html {
  font-size: 18px;
}

body {
  position: relative;
}

a {
  color: #000000;
  text-decoration: none;
  display: inline-block;
}

img {
  width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

body {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
}
body.fixed header {
  position: fixed;
  top: 0;
  left: 15px;
  right: 15px;
  z-index: 5;
  height: 40px;
  line-height: 40px;
  transition: all 0.5s ease;
}

p {
  line-height: 150%;
  margin: 0;
}

input:focus,
textarea {
  outline: none !important;
}

.container {
  margin: 0 auto;
  opacity: 0;
}

.inner {
  margin-left: 15px;
  margin-right: 15px;
  min-height: calc(100vh - 100px);
}

header {
  position: fixed;
  top: 0;
  left: 15px;
  right: 15px;
  height: 90px;
  background-color: #ffffff;
  line-height: 90px;
  display: flex;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}
header a {
  font-size: 18px;
}

main {
  margin-top: 90px;
  padding-bottom: 100px;
}

.name {
  flex: 1;
}

.nav {
  flex: 1;
  text-align: right;
}

@keyframes rainbow_animation {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
}
.works ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 30px;
}
.works ul li {
  align-self: end;
  margin-bottom: 10px;
}

.others {
  display: flex;
  position: relative;
  margin-top: 100px;
  align-items: flex-end;
  max-width: 315px;
  margin-left: auto;
}
.others::before {
  content: "Other works";
  position: absolute;
  top: -40px;
  border-bottom: 1px solid #000;
  display: block;
  left: 0;
  right: 0;
  text-align: center;
}
.others .other {
  position: relative;
}
.others .other.prev {
  margin-right: 15px;
}
.others .other.next {
  margin-left: auto;
}

.title {
  display: inline-block;
}

.status {
  display: inline-block;
  margin-left: 5px;
  background-color: #000000;
  color: #ffffff;
  font-size: 13px;
  padding: 2px;
  text-transform: uppercase;
  font-weight: bold;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form {
  margin-top: 50px;
}
.form .field {
  box-sizing: border-box;
  margin-bottom: 15px;
}
.form .field input,
.form .field textarea {
  width: 100%;
  border-width: 0 0 1px 0;
  border-color: #000000;
  border-style: solid;
  height: 40px;
  display: block;
  box-sizing: inherit;
}
.form .field input::-moz-placeholder, .form .field textarea::-moz-placeholder {
  color: #000000;
  opacity: 1;
}
.form .field input::placeholder,
.form .field textarea::placeholder {
  color: #000000;
  opacity: 1;
}
.form .field input:focus::-moz-placeholder, .form .field textarea:focus::-moz-placeholder {
  color: transparent;
}
.form .field input:focus::placeholder,
.form .field textarea:focus::placeholder {
  color: transparent;
}
.form .field textarea {
  height: 300px;
}
.form .field .error {
  background: linear-gradient(to right, #ff0000, #dc143c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 2s ease-in-out infinite;
  background-size: 400% 100%;
}
.form input[type=text],
.form input[type=email] {
  max-width: 350px;
}
.form input[type=submit] {
  background: #ffffff;
  border: 1px solid #000000;
  padding: 10px;
}
.form .alert.success {
  background: linear-gradient(to right, #98fb98, #008000, #adff2f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 3s ease-in-out infinite;
  background-size: 400% 100%;
  text-align: right;
}

footer {
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  display: flex;
  align-items: flex-end;
}
footer span {
  width: 100%;
  border-top: 1px solid #000000;
  display: block;
  padding-top: 5px;
  margin-bottom: 10px;
}

@media screen and (min-width: 445px) {
  .works ul {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}
@media screen and (min-width: 600px) {
  body.fixed header {
    left: 30px;
    right: 30px;
  }
  header {
    left: 30px;
    right: 30px;
  }
  .inner {
    margin-left: 30px;
    margin-right: 30px;
  }
  .works ul li {
    margin-bottom: 20px;
  }
  .form .field textarea {
    height: 200px;
  }
  footer {
    left: 30px;
    right: 30px;
  }
}
@media screen and (min-width: 875px) {
  .works .big {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media screen and (min-width: 1000px) {
  .container {
    margin-bottom: 10px;
    height: auto;
  }
  main {
    padding-bottom: 160px;
  }
  .works ul li {
    margin-bottom: 30px;
  }
  .works ul li:hover .title::after {
    width: 100%;
    transition: width 0.2s ease-in-out;
  }
  .works .title {
    position: relative;
  }
  .works .title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #000000;
    transition: width 0.2s ease-in-out;
  }
  .work {
    display: flex;
  }
  .work .image {
    flex: 2;
    transform: translateY(0);
  }
  .work .image img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .work .info {
    position: relative;
    flex: 1;
    margin-left: 30px;
  }
  .work .info .info--info {
    margin-top: 30px;
    position: sticky;
    top: 70px;
  }
  .others {
    position: fixed;
    top: 50%;
    right: 30px;
    margin-top: 0;
  }
  .others .other.prev {
    margin-right: 0;
  }
  .others .other.next {
    margin-left: 15px;
  }
  .contact .wrapper {
    display: flex;
  }
  .about {
    flex: 1;
    margin-top: 50px;
    margin-right: 50px;
  }
  .form {
    flex: 1;
  }
  .form form {
    float: right;
    max-width: 700px;
    width: 100%;
  }
}
@media screen and (min-width: 1905px) {
  .works ul {
    grid-template-columns: repeat(auto-fill, minmax(620px, 1fr));
  }
}/*# sourceMappingURL=app.css.map */