/*!
Theme Name: New Base
Theme URI:
Author: 
Author URI: 
Description: Description
Version: 1.0.2
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: new-base
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

New Base is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

--------------------------------------------------------------*/
/* Normalize
--------------------------------------------- */
/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */
/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Customize the background color to match your design.
   */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
   * A better looking default horizontal rule
   */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
   * Remove default fieldset styles.
   */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
   * Allow only vertical resizing of textareas.
   */
textarea {
  resize: vertical;
}

/* ==========================================================================
     Author's custom styles
     ========================================================================== */
/* ==========================================================================
     Helper classes
     ========================================================================== */
/*
   * Hide visually and from screen readers
   */
.hidden,
[hidden] {
  display: none !important;
}

/*
   * Hide only visually, but have it available for screen readers:
   * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
   *
   * 1. For long content, line feeds are not interpreted as spaces and small width
   *    causes content to wrap 1 word per line:
   *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
   */
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
   * Extends the .visually-hidden class to allow the element
   * to be focusable when navigated to via the keyboard:
   * https://www.drupal.org/node/897638
   */
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
   * Hide visually and from screen readers, but maintain layout
   */
.invisible {
  visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * The use of `table` rather than `block` is only necessary if using
   * `::before` to contain the top-margins of child elements.
   */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
     EXAMPLE Media Queries for Responsive Design.
     These examples override the primary ('mobile first') styles.
     Modify as content requires.
     ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request:
     https://www.phpied.com/delay-loading-your-print-css/
     ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Elements
--------------------------------------------- */
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

img {
  height: auto;
  max-width: 100%;
}

figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/* Links
--------------------------------------------- */
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type=button],
input[type=reset],
input[type=submit] {
  border: 1px solid;
  border-color: var(--color__border-button);
  border-radius: 3px;
  background: var(--color__background-button);
  color: rgba(0, 0, 0, 0.8);
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  border-color: var(--color__border-button-hover);
}
button:active, button:focus,
input[type=button]:active,
input[type=button]:focus,
input[type=reset]:active,
input[type=reset]:focus,
input[type=submit]:active,
input[type=submit]:focus {
  border-color: var(--color__border-button-focus);
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: var(--color__text-input);
  border: 1px solid var(--color__border-input);
  border-radius: 3px;
  padding: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: var(--color__text-input-focus);
}

select {
  border: 1px solid var(--color__border-input);
}

textarea {
  width: 100%;
}

@font-face {
  font-family: "Zodiak";
  src: url("../fonts/Zodiak-Variable.eot");
  src: url("../fonts/Zodiak-Variable.eot?#iefix") format("embedded-opentype"), url("../fonts/Zodiak-Variable.woff2") format("woff2"), url("../fonts/Zodiak-Variable.ttf") format("truetype"), url("../fonts/Zodiak-Variable.svg#font-name") format("svg");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "GeneralSans";
  src: url("../fonts/GeneralSans-Variable.eot");
  src: url("../fonts/GeneralSans-Variable.eot?#iefix") format("embedded-opentype"), url("../fonts/GeneralSans-Variable.woff2") format("woff2"), url("../fonts/GeneralSans-Variable.ttf") format("truetype"), url("../fonts/GeneralSans-Variable.svg#font-name") format("svg");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
html {
  --font-serif: "Zodiak", "Garamond", "Times New Roman", serif;
  --font-sans: "GeneralSans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  --black: #111;
  --true-black: 000;
  --main-color: red;
  --dark-gray: #525151;
  --medium-gray: #c9d3dd;
  --light-gray: #F3F7FB;
  --bright-blue: #b2ede8;
  --gray-blue: RGBA(22, 65, 148, 0.1);
  --color__link: black;
  --color__link-visited: blue;
  --color__link-hover: red;
  --color__border-button: red;
  --color__background-button: green;
  --color__border-button-hover: blue;
  --color__border-button-focus: yellow;
  --color__text-input: red;
  --color__border-input: red;
  --color__text-input-focus: red;
  --ease: cubic-bezier(.12, .845, .305,1);
  --ratio-square: 1;
  --ratio-landscape: 4/3;
  --ratio-portrait: 3/4;
  --ratio-widescreen: 16/9;
  --ratio-ultrawide: 18/5;
  --ratio-golden: 1.6180/1;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.no-sidebar .site {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "header" "main" "footer";
}

.site-header {
  grid-area: header;
}

.site-main {
  grid-area: main;
  overflow: hidden;
  /* Resolves issue with <pre> elements forcing full width. */
}

.site-footer {
  grid-area: footer;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
.main-navigation ul {
  list-style: none;
  border: 0;
  display: flex;
  justify-content: flex-end;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */
}
.main-navigation ul:after, .main-navigation ul:before {
  display: none;
}
.main-navigation ul li > a:hover::after {
  width: 100%;
}
.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a,
.main-navigation ul li.current_page_ancestor a {
  color: var(--black);
}

/* end .nav */
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  text-align: end;
  flex: 1 0 50%;
}

/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

#primary {
  background: #e77e23;
  left: 50%;
  padding: 8px;
  position: absolute;
  display: flex;
  transform: translateY(-100%);
  transition: transform 0.3s;
  color: white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  outline: 0;
}

#primary:focus,
#primary :focus-within {
  transform: translateY(0%);
  outline: 0;
}

.menu-item-has-children a:focus::after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  left: 50%;
  bottom: -8px;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: black transparent transparent transparent;
  transform: translateX(-50%);
}

/*********************
BASE (MOBILE) SIZE
*********************/
/*********************
GENERAL STYLES
*********************/
html {
  overflow-x: hidden;
  box-sizing: border-box;
  /* magic... */
  --flow-small: 10px;
  --flow-medium: 21px;
  --flow-big: 55px;
  --bottom-row-height: 70px;
  --radius-medium: 10px;
  --radius-big: 20px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.hidden {
  color: transparent;
  visibility: hidden;
  height: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  text-rendering: optimizelegibility;
  font-weight: normal;
  font-family: var(--font-sans);
  margin: 0;
  /* removing text decoration from all headline links */
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a {
  text-decoration: none;
}

h2 {
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

h4 {
  font-weight: 600;
  font-size: 18px;
  margin-top: var(--flow-small);
}

p {
  margin-bottom: 0;
}
p b, p strong {
  font-weight: 600;
}

p.site-title {
  margin: 0;
}

.page-template-default .entry-content {
  padding-top: var(--flow-big);
  max-width: 600px;
  margin: 0 auto;
}
.page-template-default p + h2 {
  margin-top: var(--flow-big);
}

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto;
}

.page {
  position: relative;
}

.page__header {
  left: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0 0;
  height: 85px;
  z-index: 2;
  border-bottom-left-radius: var(--radius-big);
  border-bottom-right-radius: var(--radius-big);
}

.header__logo a {
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  color: black;
}
.header__logo .logo-text-container {
  margin: 0 0 0 5px;
  position: relative;
  left: 35px;
}
.header__logo .site-title {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  display: none;
}
.header__logo .site-title + .site-title {
  margin-top: 3px;
  font-weight: 500;
  color: RGBA(0, 0, 0, 0.4);
}

.header__logo-image {
  min-width: 35px;
  width: 35px;
  height: 35px;
  position: fixed;
  left: 2%;
  z-index: 2;
  transform: rotate(0);
  transition: all 0.2s var(--ease);
  background: url(../images/logo.svg) center center/contain no-repeat;
}

.main-navigation__menu {
  background: RGBA(0, 0, 0, 0.03);
  background: RGBA(235, 235, 235, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-medium);
  padding: 0;
  position: fixed;
  top: 15px;
  right: 2%;
  z-index: 2;
}
.main-navigation__menu li:first-of-type a {
  border-top-left-radius: var(--radius-medium);
  border-bottom-left-radius: var(--radius-medium);
  padding-left: 16px;
}
.main-navigation__menu li:nth-of-type(3) a {
  padding-right: 16px;
}
.main-navigation__menu a {
  display: inline-block;
  padding: 12px 8px;
  text-decoration: none;
  color: RGBA(0, 0, 0, 0.6);
  font-weight: 500;
}
.main-navigation__menu a:hover {
  background: var(--bright-blue);
  color: var(--black);
}
.main-navigation__menu .nav__contact-button a {
  background: RGBA(0, 0, 0, 0.9);
  color: white;
  font-weight: 600;
  border-top-right-radius: var(--radius-medium);
  border-bottom-right-radius: var(--radius-medium);
  padding-right: 16px;
  padding-left: 12px;
}
.main-navigation__menu .nav__contact-button a:hover {
  background-color: var(--bright-blue);
  color: black;
}

.welcome {
  display: flex;
  height: calc(95vh - 85px);
  background: white;
  justify-content: center;
  align-items: center;
}
.welcome h3 {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
}

.welcome-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-text {
  margin-top: 20px;
  order: 2;
}

.portrait {
  order: 1;
  display: inline;
  width: 192px;
  height: 192px;
  aspect-ratio: 1;
  border: 3px solid #d1d1d1;
  background: url(../images/portrait.png) center center/cover no-repeat;
  border-radius: 50%;
}

.site-main {
  position: relative;
  z-index: 1;
}

/*********************
PROJECT GRID
*********************/
.work-teaser + .work-teaser, .page-template-page-work .work-teaser, .page-template-page-illustration .work-teaser {
  margin-top: var(--flow-big);
}

.project-grid__container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px 20px;
}

.project-teaser {
  position: relative;
  display: flex;
  display: flex;
  padding: 5px;
  background-color: var(--light-gray);
  border: 1px solid var(--medium-gray);
  border-radius: 10px;
  flex-direction: column;
  text-decoration: none;
  height: fit-content;
}
.project-teaser .image-container {
  border-radius: 6px;
  aspect-ratio: 209/149;
  overflow: hidden;
}
.project-teaser .image-container a:hover img {
  opacity: 0.5;
}
.project-teaser img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  transition: all 0.2s ease-out;
}
.project-teaser .teaser-card {
  margin-top: 10px;
  background-color: white;
  border-radius: 6px;
  display: flex;
  flex: 1;
  justify-content: space-between;
}
.project-teaser .teaser-card .teaser-card__content {
  padding: 10px;
}
.project-teaser .teaser-card .teaser-card__content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}
.project-teaser .teaser-card .teaser-card__content p {
  margin-top: 5px;
  color: #6d6d6d;
  white-space: break-spaces;
}
.project-teaser .teaser-card .teaser-card__link {
  display: flex;
  flex-basis: 30%;
  max-width: 22%;
}
.project-teaser .teaser-card .teaser-card__link a {
  background-color: var(--gray-blue);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.project-teaser .teaser-card .teaser-card__link a span {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/SVG/arrow-black.svg) center center/contain no-repeat;
  opacity: 0.2;
  transform: translateX(0);
  transition: all 0.2 var(--ease);
}
.project-teaser .teaser-card .teaser-card__link a:hover {
  background: var(--bright-blue);
}
.project-teaser .teaser-card .teaser-card__link a:hover span {
  opacity: 1;
  background: url(../images/SVG/arrow-black.svg) center center/contain no-repeat;
}

.button {
  border-radius: 27px;
  height: 54px;
  font-weight: 600;
  background: var(--black);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 20px 20px 20px 30px;
  transition: all 0.2 var(--ease);
}
.button icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../images/SVG/arrow-white.svg) center center/contain no-repeat;
  margin-left: 10px;
  opacity: 0.3;
  transform: translateX(0);
  transition: all 0.2 var(--ease);
}
.button:hover {
  background-color: var(--bright-blue);
  color: black;
}
.button:hover icon {
  background: url(../images/SVG/arrow-black.svg) center center/contain no-repeat;
  opacity: 1;
}

.project-grid__button {
  margin-top: 30px;
}

.page-template-page-work .project-grid__button, .page-template-page-illustration .project-grid__button {
  display: none;
}

/*********************
PROJECT SINGLE
*********************/
.project-color-header {
  width: 100vw;
  height: 81px;
  position: absolute;
  left: 50%;
  top: -81px;
  transform: translateX(-50%);
  border-radius: 20px;
  display: none;
}

.single-project h1 {
  margin-top: var(--flow-medium);
  font-size: 24px;
  font-weight: 600;
}

.project-infos {
  max-width: 600px;
}
.project-infos p {
  white-space: break-spaces;
}

.project__link {
  margin-top: var(--flow-medium);
}
.project__link icon {
  transition: transform 0.2s var(--ease);
  transform: rotate(0);
}
.project__link:hover icon {
  transform: rotate(-45deg);
}

.project-content {
  margin-top: var(--flow-big);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.project-content .image_row {
  display: flex;
  gap: 20px;
}

.image_container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.post-navigation {
  display: none;
}

.site-footer {
  padding: var(--flow-big) 0 var(--flow-medium);
}

.footer__menu {
  list-style-type: none;
  display: flex;
  justify-content: center;
}
.footer__menu li a {
  padding: 10px;
  font-size: 14px;
  color: var(--dark-gray);
  text-decoration: none;
  border-radius: 6px;
}
.footer__menu li a:hover {
  color: var(--black);
  background: var(--bright-blue);
}

/*********************
LARGER MOBILE DEVICES
*********************/
@media only screen and (min-width: 481px) {
  .header__logo {
    display: block;
  }
  .main-navigation__menu li:first-of-type a {
    padding-left: 20px;
  }
  .main-navigation__menu li:nth-of-type(3) a {
    padding-right: 20px;
  }
  .main-navigation__menu a {
    padding: 12px 20px;
  }
  .main-navigation__menu .nav__contact-button a {
    padding-right: 20px;
  }
}
/*********************
TABLET & SMALLER LAPTOPS
*********************/
@media only screen and (min-width: 768px) {
  .header__logo .site-title {
    display: block;
  }
  .main-navigation__menu {
    right: 2%;
  }
  .welcome {
    display: flex;
    background: white;
    justify-content: center;
    align-items: center;
  }
  .welcome h3 {
    font-size: 34px;
  }
  .welcome h3 span {
    display: none;
  }
  .welcome-container {
    width: 80%;
    display: flex;
    flex-direction: row;
  }
  .intro-text {
    margin-top: 0;
    order: 1;
  }
  .portrait {
    order: 2;
    width: 192px;
    height: 192px;
    aspect-ratio: 1;
    border: 3px solid #d1d1d1;
    background: url(../images/portrait.png) center center/cover no-repeat;
    border-radius: 50%;
  }
  /*********************
  PROJECT GRID
  *********************/
  .project-grid__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 20px;
  }
}
/*********************
DESKTOP
*********************/
@media only screen and (min-width: 1030px) {
  html {
    --flow-small: 10px;
    --flow-medium: 34px;
    --flow-big: 55px;
    --bottom-row-height: 70px;
    --radius-medium: 10px;
    --radius-big: 20px;
  }
  .welcome {
    display: flex;
    background: white;
    justify-content: center;
    align-items: center;
  }
  .welcome h3 {
    font-size: 43px;
    font-weight: 600;
    line-height: 1.2;
  }
  .welcome-container {
    width: 66%;
    max-width: 750px;
    display: flex;
    flex-direction: row;
  }
  .intro-text {
    order: 1;
  }
  .portrait {
    order: 2;
    width: 192px;
    height: 192px;
    aspect-ratio: 1;
    border: 3px solid #d1d1d1;
    background: url(../images/portrait.png) center center/cover no-repeat;
    border-radius: 50%;
  }
  /*********************
  PROJECT GRID
  *********************/
  .project-grid__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
  }
}
/*********************
LARGE VIEWING SIZE
*********************/