@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bulma@0.8.2/css/bulma.min.css");
html,
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth !important;
  transition: all 0.25s ease;
}

/* width */
::-webkit-scrollbar {
  width: 0.5vmax !important;
}

/* Track */
::-webkit-scrollbar-track {
  background: white !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #363636 !important;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: black !important;
}

::placeholder {
  font-family: "Poppins", sans-serif;
}

#navbar .navbar-burger span:nth-child(2) {
  left: 50%;
  width: 8px;
}

.is-active {
  font-weight: bold;
}

.columns .button {
  margin: 0.5rem !important;
}

hr {
  margin: 1rem auto;
  height: 1px;
}

.column {
  margin: auto 0.5rem;
  padding: 0.5rem;
}

.searchResult a .title {
  text-decoration: underline;
}

#navbar {
  opacity: 0.95;
}

.is-active {
  font-weight: 600;
}

.navbar-dropdown {
  border: none;
  right: 0;
  left: auto;
}

a.navbar-item:hover,
.navbar-link:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  color: white !important;
}

a.navbar-item.is-active {
  background-color: rgba(255, 255, 255, 0.25) !important;
  color: white !important;
}
a.navbar-item.is-active:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  color: grey;
}

.navbar-link:not(.is-arrowless)::after {
  border-color: grey;
}

#hero {
  background: rgb(0, 0, 0);
  background: -moz-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  background: -webkit-linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
#hero::before {
  filter: blur(0.15rem);
  background-image: url(/assets/images/verona.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  position: absolute;
  opacity: 0.25;
  content: "";
}

.title {
  margin: auto 0.75rem !important;
}

.subtitle {
  letter-spacing: 0.25rem;
}

#about .image {
  max-width: 20vmax;
  margin: auto;
}
#about .image img {
  border: 0.25rem dotted black;
}
#about a {
  min-width: 25vmax;
  margin: 0.5rem;
}

#contact #contact-button {
  margin: 0.5rem auto;
  display: flex;
  justify-content: center;
}
#contact svg {
  transition: all 0.15s ease-in-out;
  margin: auto 0.75vmax;
}
#contact svg:hover {
  transform: scale(1.1);
  filter: opacity(0.75);
}
#contact hr {
  background-color: black;
}

#blog .hero-body {
  padding: 3rem 0.25rem 1rem 0.25rem;
}
#blog .container {
  margin: 1.5rem auto;
}
#blog #blog-card {
  transition: all 0.25s ease;
  margin-bottom: 0.5vmax;
  transform: scale(0.85);
  margin-right: 2.5vmax;
  margin-left: 2.5vmax;
  line-height: normal;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
#blog #blog-card:hover {
  transform: scale(0.875);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  #blog #blog-card {
    transform: scale(1);
    margin-bottom: 5vmax !important;
  }
  #blog #blog-card:hover {
    transform: scale(1.025);
    margin-bottom: 5vmax !important;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
  }
  #blog #blog-card .image {
    padding-top: 50% !important;
  }
}
#blog #blog-card .title {
  margin: 0.5rem !important;
}
#blog #blog-card .content {
  margin: 0.5rem;
}
#blog #blog-card .column {
  display: grid;
}
#blog #blog-card .column .image {
  border-radius: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#search {
  border-bottom: 0.15rem solid;
}
#search input {
  border: none;
  outline: none;
  font-weight: 500 !important;
}
#search input::placeholder {
  font-weight: 500;
  color: grey;
  letter-spacing: 0.25rem;
}
#search .button {
  transition: all 0.25s ease;
}
#search .button:focus {
  outline: 0.25rem solid white;
}
#search .button {
  border: none;
}

#footer #backtotop {
  transition: all 0.25s ease;
  width: 10rem;
  padding: 0.25rem;
  margin: auto auto 1rem auto;
}
#footer #backtotop:hover {
  transform: scale(1.05);
}
#footer .container {
  margin: auto;
  padding: 1.5rem;
  line-height: 1.25;
}
#footer .container .column {
  display: grid;
  justify-content: center;
}
#footer .container .column li {
  list-style: circle;
  list-style-position: outside;
}
#footer .container .column a {
  color: #7a7a7a;
}
#footer .container .column a:hover {
  color: white;
}
#footer .container .column figure {
  border: 1.5px solid white;
  border-radius: 50rem;
  justify-content: center;
  margin: auto;
  transition: all 0.25s ease;
}
#footer .container .column figure:hover {
  transform: scale(1.15);
}
#footer #credits {
  padding: 0.75rem;
  font-size: 0.85rem;
}
#footer #credits a {
  text-decoration: underline;
  font-weight: bolder;
  color: white;
}

#project .columns .column {
  border-radius: 0.5rem;
}
#project .columns .column .image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#project #project-card {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  transform: scale(0.95);
  transition: all 0.5s ease;
  margin-bottom: 0.5rem !important;
  display: inline-table;
}
#project #project-card:hover {
  transform: scale(0.975);
}
#project .card {
  transition: all 0.25s ease;
}
#project .card:hover {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

@media (min-width: 768px) {
  #post {
    margin: auto 2.5vmax;
  }
}
#post a {
  text-decoration: underline;
}
#post #title {
  text-decoration: none;
}
#post .title {
  margin: auto;
}
#post #post-image {
  border-radius: 0.25rem;
}
#post .subtitle {
  letter-spacing: 0.05rem;
}
#post #description {
  margin-bottom: 1.25vmax;
}
#post .tag {
  margin: 0.15rem auto;
}
#post .content ol, #post .content ul, #post .content blockquote {
  display: inline-block;
}
#post .content hr {
  background-color: grey;
}
#post .content img, #post .content iframe {
  max-width: calc(100% - 25vw);
  margin: 0.25rem auto;
}
@media (max-width: 768px) {
  #post .content img, #post .content iframe {
    max-width: calc(100% - 5vw);
  }
}
#post .content ul, #post .content ol {
  display: inline-block;
}
#post .container {
  margin: 2.5rem auto;
  word-break: break-word;
  max-width: -webkit-fill-available;
}
#post #disqus_thread {
  margin-top: 5vmax;
}

#page-section .content ul, #page-section .content ol, #page-section .content blockquote {
  display: inline-block;
}

/*# sourceMappingURL=style.css.map */