* {
  box-sizing: border-box;
}

/* html {
  background: pink;
} */

body {
  margin: 0;
}

* {
  font-family: 'p22underground-book';
}

a {
  text-decoration: none;
}

.rotating-content {
  background-image: url("assets/photo-1553702446-4a0cfb5781f8.jpeg");
  width: 100%;
  height: 100vh;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-content {
  background: white;
  padding: 150px 100px 100px;
  display: inline-flex;
  align-items: flex-start;
  grid-gap: 30px;
  width: 100%;
}

.main-content.bio {
  grid-gap: 60px;
  align-items: flex-start;
}

.bio h2 {
  font-size: 43px;
  margin-top: 0;
}

.bio-image img {
  width: 400px;
}

.recent-art {
  padding: 100px;
  color: white;
}

.art {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.art-container {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
}

.text-overlay {
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: 0.5s;
}

.art-overlay {
  position: absolute;
  background: #a87daa;
  width: 100%;
  height: 100%;
  right: 100%;
  opacity: 0.1;
  transition: 0.5s;
}

.lightroom-overlay {
  position: absolute;
  background: rgba(0,0,0,0.8);
  height: 100%;
  width: 100%;
  z-index: 3;
  display: none;
  justify-content: center;
  align-items: center;
}

.lightroom-overlay img {
  width: 80vw;
}

.art:hover .art-overlay {
  right: 0;
  opacity: 0.9
}

.art:hover .text-overlay {
  opacity: 1;
}

.art img {
  width: 100%;
}

.main-content h1 {
  font-size: 80px;
  margin-right: 5rem;
  padding-right: 4rem;
  margin-bottom: 50px;
  margin-top: 0;
}

.main-content .body {
  font-size: 20px;
  line-height: 30px;
  padding-left: 30px;
  border-left: 3px solid magenta;
}

.header {
  background: transparent;
  display: inline-flex;
  position: absolute;
  top: 0;
  height: 100px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 4rem;
}

.links {
  grid-gap: 30px;
  display: inline-flex;
}

.links a,
.dropdown-toggle {
  text-decoration: none;
  font-family: "p22-underground-sc", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: lowercase;
}

.links .link {
  color: black;
}

.links.home .link {
  color: white;
}

.dropdown-menu .dropdown-item {
  color: initial;
}

.centered-logo {
  text-align: center;
  color: white;
}

.centered-logo h1 {
  font-size: 64px;
  font-family: 'old_standard_ttregular';
  margin: 0;
}

.centered-logo h3 {
  font-family: 'montserratthin';
  font-size: 34px;
  margin: 0;
  font-weight: 600;
}

.background-toggle {
  display: flex;
  justify-content: center;
  grid-gap: 20px;
  position: absolute;
  bottom: 25px;
}

.background-toggle div {
  border-radius: 50%;
  border: solid 2px purple;
  width: 13px;
  height: 13px;
}

.text {
  line-height: 30px;
}

.text.commissions {
  width: 75%;
  margin: auto;
}

.text.commissions form {
  width: 100%;
}

.text h2 {
  text-align: center;
}

.text h6 {
  border-bottom: 1px solid magenta;
  width: 100px;
  margin: 2rem auto 3rem;
}

form {
  width: 65%;
  margin: 0 auto;
  min-width: 450px;
  padding: 2rem;
  border: 1px solid magenta;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

form span {
  margin-left: 15px;
  font-size: 13px;
  color: gray;
}

.commissions form {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  grid-gap: 15px;
}

input:not([type="checkbox"]), textarea {
  margin: 15px 0;
  height: 30px;
  width: 100%;
}

.commissions input,
.commissions textarea {
  margin: 0;
  padding-left: 10px;
}

.commissions textarea,
input[type="tel"] {
  grid-column: 1/3;
}

.commissions textarea {
  min-height: 160px;
}

textarea {
  min-height: 100px;
}

table td,
table th {
  border: solid #b188b1 2px;
  padding: 1rem;
  line-height: 22px;
}

table th {
  background: pink;
}

table td {
  background: #ffeaed;
}
