/*
  Built off spectre.css base

  NOTE: 
                 
  this is not a free-use template or theme. 
  please do NOT copy this layout. feel free 
  to ask me how to code, but if you 
  straight up rip this, I wish you many 
  misfortunes, and may you lose every 50/50.

  https://www.plagiarism.org/article/what-is-plagiarism

  ---

  all credits are on the epilogue page

 */

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background-color: #f9f9f9;
  background-image: linear-gradient(30deg, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
  min-height: 100vh; 
  font-family: 'Lora', serif;
  font-size: 13px;
  padding: 10px;
  font-weight: 500;
  color: #58606f;
  cursor: url(../img/kaworu01.cur), default;
}

.nav .nav-item.active > a:focus, 
.nav .nav-item.active > a:hover,
.nav .nav-item a:focus, 
.nav .nav-item a:hover,
p.socials a:hover,
a:visited,
a {
  color: #5e5cbd;
}

.nav .nav-item a {
  padding: .1rem;
  margin: 0 .2rem;
}
.nav .nav-item a:hover,
.nav .nav-item.active > a:hover {
  box-shadow: inset 0 -20px #f1f1ff;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

a:hover {
  cursor: url(../img/kaworu02.cur), pointer;
}

.nav .nav-item.active > a {
  box-shadow: inset 0 -2px #f1f1ff;
}

p:not(.socials) a,
ul:not(.nav) a {
  box-shadow: inset 0 -2px #d5d5f3;
}
p:not(.socials) a:hover,
ul:not(.nav) a:hover {
  text-decoration: none;
  box-shadow: inset 0 -20px #d5d5f3;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}

.container {
  background-color: #fff;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin: 120px auto;
  padding: 10px;
}

.nav {
  flex-direction: row;
  justify-content: center;
  margin: 20px auto 30px;
}

.nav-item:after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #eee;
  margin-right: 3px;
  vertical-align: middle;
}
.nav-item:last-child:after {
  display: none;
}

p.socials {
  font-size: 2.4em;
}
p.socials a {
  color: #66758c;
}
p.interests {
  line-height: 1.95;
}

h2 {
  font-style: italic;
}
h5 {
  margin-top: .8rem;
  font-size: 1rem;
}
h6 {
  text-transform: uppercase;
}

.columns.inner {
  width: 90%;
  margin: auto;
}

.label.label-primary {
  background: #f0eaeb;
  color: #62587d;
}
.label.label-secondary {
  background: #f1f1ff;
  color: #5e5cbd;
}

.center {
  margin: auto;
  text-align: center;
}
.right {
  margin-left: auto;
  margin-right: 0;
}

.no-margin--bottom {
  margin-bottom: 0;
}

img.signature {
  width: 40%;
}

ul {
  list-style-position: outside;
  margin-left: 1rem;
}
ol ol, ol ul, ul ol, ul ul {
  margin: 0 0 .8rem .8rem;
}

/* The Masonry Container */
.grid-gallery { 
}

/* The Masonry Brick */
.grid-gallery .item {
  background: #fff;
  width: 33%;
  display: inline-block;
  margin-bottom: 3px;
}
.item.item--width2 { width: 66%; }

.grid-gallery .item a {
  display: block;
}
.grid-gallery .item img {
  max-width: 100%; 
  display: block;
}

.space {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 20px);
}

@media (max-width: 500px) {
  body {
    padding: 0;
  }
  .container {
    margin: 0;
    border-radius: 0;
  }
  .nav-item:after {
    display: none;
  }
  .grid-gallery .item {
    width: 100%;
  }
  .columns.inner {
    width: 100%;
  }
}