/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

p, li, a {
  font-size: 1rem;
}
@media (min-width: 48rem) {
  p, li, a {
    font-size: 1.25rem;
  }
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.grid-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

@media screen and (min-width: 48rem) {
  .grid-wrapper--two-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 48rem) {
  .grid-wrapper--three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 1rem;
}

.px-4 {
  padding: 0 1rem;
}

.mx-4 {
  margin: 0 1rem;
}

.inline {
  display: inline;
}

.font-bold {
  font-weight: 600;
}

.w-full {
  width: 100%;
  max-width: 100% !important;
}

.w-6 {
  width: 1.5rem;
}

.text-center {
  text-align: center;
}

.badge {
  padding: 0.25rem 1rem;
  border-radius: 999px;
  display: inline-block;
  font-size: 12px;
}

.badge--primary {
  color: white;
  font-weight: 600;
  background: linear-gradient(to right, #E53935, #F87171);
}

.button {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 0.5rem;
  max-width: max-content;
  text-align: center;
}

.button--primary {
  color: #FFFFFF;
  background: linear-gradient(to right, #E53935, #F87171);
  font-weight: 600;
  transition: transform 0.1s ease-in-out;
}
.button--primary:hover {
  transform: scale(1.025);
}

#footer {
  background-color: #fef2f2;
}
#footer > div {
  padding-top: 4rem;
}
#footer .footer-title {
  font-family: "Bricolage Grotesque";
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 48rem) {
  #footer .footer-title {
    font-size: 1.5rem;
  }
}
#footer strong {
  color: #333333;
}
#footer p {
  color: #666666;
}
#footer a, #footer p, #footer strong {
  font-size: 1rem;
}
@media (min-width: 48rem) {
  #footer a, #footer p, #footer strong {
    font-size: 1.125rem;
  }
}
#footer hr {
  border-top: 0;
  border-bottom: 1px dashed #aaaaaa;
  margin: 0;
}
#footer ul {
  padding-left: 0;
  margin: 0;
}
#footer ul li {
  list-style: none;
  margin-bottom: 0.25rem;
}
#footer ul li a {
  color: #E53935;
  text-decoration: none;
}
#footer .copyright {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
}
@media (min-width: 48rem) {
  #footer .copyright {
    font-size: 1rem;
  }
}

.card {
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #dfdfdf;
  height: max-content;
  text-decoration: none;
  background-color: white;
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card__portfolio {
  padding: 0;
  overflow: hidden;
  transition: transform 0.1s ease-in-out;
}
.card__portfolio h3 {
  margin-bottom: 0;
  padding: 1rem;
  font-size: 1rem;
}
@media (min-width: 48rem) {
  .card__portfolio h3 {
    font-size: 1.25rem;
  }
}
.card__portfolio img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  max-height: 200px;
}
.card__portfolio:hover {
  transform: scale(1.075) rotate(-0.5deg);
}

.card--highlighted {
  background: linear-gradient(to bottom right, #E53935, #FCA5A5);
  padding: 4px;
  border: none;
}
.card--highlighted > div {
  border-radius: 0.25rem;
  background-color: white;
  padding: 1rem;
}

.card--blurred-background {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

#hero {
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to bottom right, #FEE2E2, #f8f8f8);
}
@media (min-width: 48rem) {
  #hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
#hero h1 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  #hero h1 {
    font-size: 2.5rem;
  }
}
#hero p {
  margin-bottom: 2rem;
}

.navbar {
  height: 4rem;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}
.navbar .navbar-container {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar .navbar-link-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.navbar .navbar-link-wrapper--mobile {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.navbar li {
  list-style-type: none;
}
.navbar a {
  text-decoration: none;
  color: #E53935;
  display: inline-block;
}
.navbar .navbar-site-title {
  font-family: "Bricolage Grotesque";
  background: linear-gradient(to right, #E53935, #F87171);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-transform: uppercase;
}
.navbar .navbar-link-item:hover {
  text-decoration: underline;
}
.navbar .tablet-and-up {
  display: none;
}
@media (min-width: 48rem) {
  .navbar .tablet-and-up {
    display: flex;
  }
}
@media (min-width: 48rem) {
  .navbar .mobile-only {
    display: none;
  }
}

.top-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
}

* {
  box-sizing: border-box;
}

body {
  background: #f8f8f8;
  color: #000000;
  font-family: "Figtree";
}

h1, h2, h3, h4, h5, h6, .beautify {
  line-height: 1.25;
  font-family: "Bricolage Grotesque";
  background: linear-gradient(to right, #E53935, #FCA5A5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

del {
  color: #888888;
  font-size: 14px;
}

p {
  line-height: 1.5;
}

.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.centered-layout {
  display: grid;
  grid-template-column: 1fr;
  place-items: center;
}

.text-primary {
  color: #E53935;
}

section > h2 {
  font-size: 1.5rem;
}
@media (min-width: 48rem) {
  section > h2 {
    font-size: 2rem;
  }
}

.as-paragraph {
  display: inline;
  font-size: 1rem;
}
@media (min-width: 48rem) {
  .as-paragraph {
    font-size: 1.25rem;
  }
}

li:has(> .font-bold)::marker {
  font-weight: 600;
}

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