* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25), transparent;
}

*::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

*::-webkit-scrollbar-track {
		background-color: #111;
}

*::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid rgba(0,0,0,0);
    background-clip: padding-box;
    border-radius: 7px;
    background-color: rgba(255,255,255,0.25);
    box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), 
                inset 1px 1px 0px rgba(0, 0, 0, 0.05);
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255,255,255,0.35);
}

*::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

*::-webkit-scrollbar-corner {
    background-color: transparent;
}

photo-canvas {
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: visible;
  user-select: none;
  width: calc((100% - 1000px) / 2);
}

photo-canvas.left {
  left: 0;
}

photo-canvas.right {
  right: 0;
}

photo-canvas photo {
  display: none;
}

photo-canvas figure {
  position: absolute;
  width: 400px;
  height: 450px;
  padding: 25px 25px 0 25px;
  background-color: white;
  transform-origin: center center;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
  transition-property: all;
  transition-timing-function: cubic-bezier(.05,.94,.25,1.0);
}

photo-canvas figure img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

photo-canvas figure figcaption {
  position: absolute;
  width: calc(100% - 50px);
  bottom: 0;
  height: 75px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  line-height: 0px;
  font-family: "Hey Gotcha", sans-serif;
  font-size: 48px;
}

.contact-table tr td {
  padding: 2px 10px;
  vertical-align: middle;
}

.contact-table tr td:first-child {
  text-align: right;
  white-space: nowrap;
}
  
.contact-table tr td a {
  transition: all 0.25s ease-in-out;
}

.contact-table tr td:first-child a {
  display: inline-block;
  text-align: center;
  font-size: 25px;
  width: 40px;
  height: 40px;
  line-height: 43px;
  color: white;
  background-color: var(--primary-color);
  border-radius: 100%;
  margin-bottom: 5px;
}

.contact-table tr td:first-child a:hover {
  color: var(--primary-color);
  background-color: transparent;
}

.contact-table tr td:nth-child(2) a {
  font-family: "Intro Rust", serif;
  font-size: 2em;
  word-break: break-all;
  color: black;
}

.white .contact-table tr td:nth-child(2) a {
  color: white;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.25);
}

.contact-table tr td:nth-child(2) a:hover {
  color: var(--primary-color);
}

.dot-image-link {
  display: inline-block;
  width: 400px;
  height: 400px;
  position: relative;
  flex-grow: 0;
  border-radius: 400px;
  overflow: hidden;
  box-shadow: 0 0 0 transparent;
  transition: all 0.25s ease-in-out;
}

.dot-image-link:hover {
  box-shadow: 5px 5px 25px rgba(0,0,0,0.25);
}

.dot-image-link span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.25);
  font-family: "Intro Rust", sans-serif;
  bottom: 20%;
  font-size: 1.5em;
}

.dot-image-link.upper span {
  bottom: auto;
  top: 20%;
}

.aunties-own {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 500px;
  height: 500px;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
  grid-gap: 5px;
}

.aunties-own img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 250px;
}

.aunties-own h2 {
  font-size: 3em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
}

img#twenty-percent {
  width: 500px;
  height: 500px;
}

@media (max-width: 768px) {
  .dot-image-link {
    width: 300px;
    height: 300px;
  }

  .contact-table tr td:nth-child(2) a {
    font-size: 1.5em;
  }

  .aunties-own {
    display: block;
    width: 100%;
    height: 150px;
    bottom: 30px;
    text-align: center;
  }

  .aunties-own h2 {
    font-size: 2em;
    display: block;
    transform: none;
  }

  .aunties-own img {
    display: inline-block;
    width: 100px;
    height: 100px;
  }

  img#twenty-percent {
    width: 250px;
    height: 250px;
  }
}
