@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&family=Roboto+Slab:wght@100..900&display=swap");
.roboto-slab-regular {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.roboto-slab-bold, main h1 {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.roboto-slab-black, header div h1 {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light, header div p {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular, body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background-color: hsl(0, 0%, 85%);
  font-size: 1rem;
  color: black;
}

a {
  color: #6e80d8;
  cursor: pointer;
  text-decoration: underline;
}
a:visited {
  color: #6e80d8;
}
a:active {
  color: #6cd8c6;
}

header {
  width: 70%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 10vh;
}
@media screen and (max-width: 20cm) {
  header {
    width: 90%;
  }
}
header div h1 {
  margin-bottom: 0;
  font-size: 2.4rem;
}
header div p {
  margin-top: 0;
}
header div img {
  height: 100px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 40%;
  transform: scale(1);
  transition: all 0.2s ease;
}
header div img:hover {
  transform: scale(1.5);
  border-radius: 10px;
}

footer {
  width: 70%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 20cm) {
  footer {
    margin-top: -5rem;
    margin-bottom: calc(200px + 1rem);
  }
}
footer div {
  flex-basis: 33%;
}
footer div#linkPanel {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  gap: 10%;
}
@media screen and (max-width: 20cm) {
  footer div {
    flex-basis: 100%;
    text-align: center !important;
  }
  footer div#linkPanel {
    justify-content: center;
  }
}

main {
  max-width: 1300px;
  width: 50%;
  margin: 5rem auto;
}
@media screen and (max-width: 20cm) {
  main {
    width: 95%;
  }
}
main div, main span {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
main h1 {
  position: relative;
  font-size: 2rem;
  transform: translateX(-0.7ch);
}
@media screen and (max-width: 20cm) {
  main h1 {
    transform: translateX(0ch);
  }
}
main h1::before {
  position: relative;
  content: ">";
  left: -0.5ch;
  top: -2px;
}
@media screen and (max-width: 20cm) {
  main h1::before {
    display: none;
  }
}

.portfolio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.portfolio .pf-item {
  flex-basis: 45%;
  box-sizing: border-box;
  margin: 10px;
  padding: 15px;
  border: 2px solid hsl(0, 0%, 55%);
  border-radius: 5px;
  align-content: center;
}
.portfolio .pf-item h2 {
  margin: 0;
}
@media screen and (max-width: 20cm) {
  .portfolio .pf-item {
    flex-basis: 100%;
  }
}
.portfolio .pf-item:hover {
  border-color: hsl(0, 0%, 45%);
  transition: border 10ms;
}

.gallery {
  background-color: hsl(0, 0%, 25%);
  overflow-y: hidden;
  overflow-x: scroll;
  white-space: nowrap;
  padding: 10px;
  height: 230px;
  width: 100%;
  border-radius: 3px;
}
@media screen and (max-width: 20cm) {
  .gallery {
    background-color: hsl(0, 0%, 20%);
    overflow-y: scroll;
    overflow-x: hidden;
    white-space: wrap;
    padding: 10px;
    height: 460px;
    width: 320px;
    text-align: center;
  }
}

#baguette-placeholder {
  height: 500px;
  background-color: red;
  width: 150%;
  transform: translateX(-15%);
}

#cookie-banner {
  position: fixed;
  background-color: hsl(0, 0%, 78%);
  bottom: 1rem;
  left: 2rem;
  width: 320px;
  height: 200px;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 15px;
}
@media screen and (max-width: 20cm) {
  #cookie-banner {
    left: 0rem;
    margin: 0;
    width: 100vw;
    bottom: 0rem;
    border-radius: 0px;
  }
}
#cookie-banner h1 {
  margin: 0;
  margin-top: 5px;
}
#cookie-banner p {
  margin: 0;
}
#cookie-banner .consent-panel {
  margin-top: 20px;
  margin-left: -15px;
}
#cookie-banner .consent-panel button {
  box-sizing: border-box;
  outline: none;
  border: 2px solid hsl(0, 0%, 25%);
  background-color: hsl(0, 0%, 25%);
  border-radius: 3px;
  padding-top: 10px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
  margin-left: 15px;
  color: white;
  cursor: pointer;
  transition: all 100ms;
}
#cookie-banner .consent-panel button:hover, #cookie-banner .consent-panel button:active {
  background-color: hsl(0, 0%, 78%);
  color: black;
}
#cookie-banner .consent-panel button#cookie-more {
  background-color: hsl(0, 0%, 78%);
  color: black;
}
#cookie-banner .consent-panel button#cookie-more:hover, #cookie-banner .consent-panel button#cookie-more:active {
  background-color: hsl(0, 0%, 90%);
}

#cookie-info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  border-radius: 5px;
  background-color: hsl(0, 0%, 78%);
  width: 50vw;
  height: 70vh;
  box-shadow: 1px 0px 0px 20000vh rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 20cm) {
  #cookie-info {
    width: 100vw;
    height: 90vh;
  }
}
#cookie-info h1 {
  text-align: center;
}
#cookie-info iframe {
  margin-left: 5%;
  width: 90%;
  height: 75%;
}
#cookie-info button {
  box-sizing: border-box;
  outline: none;
  border: 2px solid hsl(0, 0%, 25%);
  background-color: hsl(0, 0%, 25%);
  border-radius: 3px;
  padding-top: 10px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
  margin-left: 50%;
  margin-top: 1.5%;
  transform: translate(-50%, 0);
  color: white;
  cursor: pointer;
  transition: all 100ms;
}
#cookie-info button:hover, #cookie-info button:active {
  background-color: hsl(0, 0%, 78%);
  color: black;
}/*# sourceMappingURL=styles.css.map */