@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");
/* --------------------------------- COLORS --------------------------------- */
/* ---------------------------------- FONTS --------------------------------- */
/* -------------------------- PADDINGS AND SPACING -------------------------- */
/* -------------------------------------------------------------------------- */
/*                                GENERAL STYLE                               */
/* -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: #FAEACE;
  font-family: "poppins", sans-serif, sans-serif;
}

#fullPage {
  position: relative;
}

section#top {
  position: relative;
}

/* --------------------------- TEXT GEMERAL STYLE --------------------------- */
h1 {
  font-size: 9rem;
  line-height: 8rem;
  font-weight: 400;
  width: 50%;
  padding-left: 0.2em;
}

h2 {
  font-size: 3rem;
  letter-spacing: 0.25rem;
  padding-top: 3em;
  position: relative;
}

h2.title-grfx {
  position: relative;
}
h2.title-grfx::after {
  content: "";
  background-image: url(/images/title-star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 200%;
  height: 200%;
  top: 10%;
  left: -20%;
}

p {
  padding: 2.5em;
  font-size: 1.5rem;
}

/* ---------------------------- LINKS ICONS LISTS --------------------------- */
a {
  text-decoration: none;
  color: black;
}
a:hover {
  font-weight: 800;
  text-transform: uppercase;
}

i:hover {
  color: #D0473E;
}

ul li {
  list-style: none;
}

/* -------------------------------------------------------------------------- */
/*                           HEADER AND  NAVIGATION                           */
/* -------------------------------------------------------------------------- */
header {
  position: relative;
  top: 0;
}
header #cta {
  background-color: #66B9B4;
  padding: 1em 0;
  justify-content: center;
  display: flex;
}
header nav {
  border-bottom: 1px solid black;
  background-color: #FAEACE;
  /* Social media icons */
}
header nav .nav-contents {
  display: flex;
  justify-content: space-between;
  /* Hamburger Menu */
  /* Menu items */
}
header nav .nav-contents #hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  padding-right: 3em;
}
header nav .nav-contents #hamburger span.line {
  width: 2.5rem;
  height: 0.25rem;
  background: black;
}
header nav .nav-contents .logo-wrapper {
  display: flex;
  align-items: center;
  padding-left: 5em;
}
header nav .nav-contents .logo-wrapper img {
  width: 50%;
}
header nav .nav-contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav .nav-contents ul li {
  border-right: 1px solid black;
  list-style-type: none;
  padding: 0.5em 1.5em;
  width: 50%;
}
header nav .nav-contents ul li:first-child {
  border-left: 1px solid black;
}
header nav .nav-contents ul li:last-child {
  border-right: none;
}
header nav .nav-contents ul li a {
  text-decoration: none;
  color: black;
}
header nav .social-wrapper {
  font-size: 1.5rem;
  display: flex;
}
header nav .social-wrapper i {
  padding: 0 0.5em;
}

/* -------------------------------------------------------------------------- */
/*                              HOMEPAGE SECTION                              */
/* -------------------------------------------------------------------------- */
.section-container.homepage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  align-items: center;
  padding: 2rem;
  position: relative;
}
.section-container.homepage #hero-text p {
  text-align: left;
  padding: 2em 2em;
}
.section-container.homepage #hero-text button {
  padding: 1.75em 2em;
  width: clamp(12rem, 14vw, 15vw);
  height: auto;
  background: #D0473E;
  border-radius: 20px;
  border: 2px solid #000;
  border-left: 8px solid #631A16;
  border-bottom: 8px solid #631A16;
  font-size: medium;
  color: white;
  text-transform: uppercase;
  margin-left: 2.5rem;
}
.section-container.homepage #hero-text button:hover {
  background-color: #66B9B4;
  border-bottom: 8px solid #233e34;
  border-left: 8px solid #233e34;
}
.section-container.homepage #hero-text button a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-weight: 400;
}
.section-container.homepage #heroContainer {
  position: relative;
  right: 0;
  width: clamp(20rem, 50vw, 100vw);
  max-width: 100%;
  height: auto;
}

.section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3em;
  padding-right: 10em;
  background-color: #FAEACE;
}

.section-container .nav-contents {
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}
.section-container .nav-contents span img {
  width: 30vw;
  position: relative;
  top: -20%;
}

/* -------------------------------------------------------------------------- */
/*                          LOGO TICKER MARQUEE THING                         */
/* -------------------------------------------------------------------------- */
/* Ticker CSS Animation Tutorial Source:
// https://youtu.be/bd9MLIb3DCg?si=KPpp5L8v_VvMr1AB */
#carousel {
  background-color: white;
  height: 15%;
  display: flex;
  gap: 2rem;
  position: absolute;
  top: 90%;
  width: 100vw;
}
#carousel ul {
  display: flex;
  align-items: center;
}
#carousel ul li img {
  width: 40%;
}

ul.marquee {
  display: flex;
  justify-content: flex-start;
  white-space: nowrap;
  gap: 1rem;
  position: absolute;
  animation: marquee 15s linear infinite;
  padding: 1em 3em;
  min-width: 100%;
}

.brand-logo {
  width: 60%;
  margin: 0 8rem;
}

/* Define the marquee animation */
@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0); /* Moves the entire content out of view */
  }
}
/* -------------------------------------------------------------------------- */
/*                                ABOUT SECTION                               */
/* -------------------------------------------------------------------------- */
.section-container.about {
  display: grid;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section-container.about #bagContainer {
  position: absolute;
  left: -5%;
  transform: scaleX(-1);
}
.section-container.about div {
  position: absolute;
  right: 0;
  width: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-container.about div h2,
.section-container.about div span {
  text-align: center;
}
.section-container.about div span {
  position: relative;
  left: 15%;
  top: -5rem;
  width: 3vw;
  text-align: right;
}
.section-container.about div p {
  padding: 0 0 3em 3em;
  width: 90%;
  display: flex;
  justify-content: center;
}

/* -------------------------------------------------------------------------- */
/*                              PRODUCTS SECTION                              */
/* -------------------------------------------------------------------------- */
section.section.s3 {
  background-color: white;
  display: flex;
  justify-content: center;
  text-align: center;
}
section.section.s3 .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 3em 10em;
  width: 75%;
  margin: 0 auto;
  position: relative;
  top: 5%;
}
section.section.s3 .product-list img {
  width: 20rem;
  padding: 1em;
}
section.section.s3 .product-list .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.section.s3 span img {
  width: 30%;
  position: absolute;
  right: 35%;
  top: 13%;
}
section.section.s3 .button-wrapper {
  display: flex;
  justify-content: right;
  padding-right: 2em;
}
section.section.s3 .button-wrapper button {
  padding: 1.75em 2em;
  width: clamp(12rem, 14vw, 15vw);
  height: auto;
  background: #D0473E;
  border-radius: 20px;
  border: 2px solid #000;
  border-left: 8px solid #631A16;
  border-bottom: 8px solid #631A16;
  font-size: medium;
  color: white;
  text-transform: uppercase;
  padding: 1em 0.5em;
}
section.section.s3 .button-wrapper button:hover {
  background-color: #66B9B4;
  border-bottom: 8px solid #233e34;
  border-left: 8px solid #233e34;
}

/* -------------------------------------------------------------------------- */
/*                                CONTACT PAGE                                */
/* -------------------------------------------------------------------------- */
section#message-me {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10%;
}

.contact-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
}

.form-container {
  width: 50vw;
  display: flex;
  flex-direction: column;
  /* ------------------------------ CONTACT FORM ------------------------------ */
}
.form-container .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 5em;
}
.form-container .title-wrapper h2,
.form-container .title-wrapper p,
.form-container .title-wrapper span {
  text-align: center;
}
.form-container .title-wrapper h2 {
  padding-top: 2em;
}
.form-container .title-wrapper span img {
  width: 70%;
  position: relative;
  right: 0;
  top: -20%;
}
.form-container form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 6em;
  width: 50vw;
}
.form-container form::before {
  content: "Your feedback is valuable to us. Let us know what you think about our products and services.";
  padding: 2em 0;
  font-style: italic;
  font-size: 1rem;
  opacity: 0.6;
}
.form-container form label {
  font-weight: 600;
  padding-bottom: 0.5em;
}
.form-container form input,
.form-container form textarea {
  width: 40vw;
  border-radius: 5px;
  border-style: none;
  border: 2px solid black;
  height: 2rem;
  font-family: "poppins", sans-serif;
}
.form-container form input::-moz-placeholder, .form-container form textarea::-moz-placeholder {
  padding-left: 1em;
  padding-top: 1em;
}
.form-container form input::placeholder,
.form-container form textarea::placeholder {
  padding-left: 1em;
  padding-top: 1em;
}
.form-container form .button-wrapper {
  display: flex;
  justify-content: center;
  padding: 1em;
  position: relative;
}
.form-container form .button-wrapper button {
  padding: 1.75em 2em;
  width: clamp(12rem, 14vw, 15vw);
  height: auto;
  background: #D0473E;
  border-radius: 20px;
  border: 2px solid #000;
  border-left: 8px solid #631A16;
  border-bottom: 8px solid #631A16;
  font-size: medium;
  color: white;
  text-transform: uppercase;
  color: white;
  text-transform: uppercase;
  position: absolute;
  padding: 1em;
  left: 0;
}
.form-container form .button-wrapper button:hover {
  background-color: #66B9B4;
  border-bottom: 8px solid #233e34;
  border-left: 8px solid #233e34;
}

#penContainer {
  width: 100vw;
}

.copyright span {
  width: 100vw;
  position: absolute;
  bottom: 0;
  text-align: center;
  background-color: #66B9B4;
  padding: 1em 0;
}

/* -------------------------------------------------------------------------- */
/*                               FOOTER SECTION                               */
/* -------------------------------------------------------------------------- */
footer {
  background-color: #66B9B4;
  padding: 2em;
  position: relative;
  bottom: 0;
  padding-left: 4em;
  text-align: left;
}
footer img {
  width: 10rem;
}
footer i {
  font-size: 1.5rem;
}
footer .footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
footer .footer-content div {
  display: flex;
  flex-direction: column;
}
footer .footer-content .logo-wrapper img,
footer .footer-content h3 {
  padding-bottom: 0.2em;
}
footer .footer-content h3 {
  font-size: 2rem;
}
footer .footer-content .logo-wrapper img {
  width: 50%;
}
footer .footer-content div:last-child {
  text-align: right;
  padding-right: 3em;
  justify-content: flex-end;
  align-items: flex-end;
}
footer .footer-content div:last-child .social-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: right;
  gap: 1em;
  padding: 0;
  padding-top: 2em;
}
footer .footer-content div:last-child .social-wrapper i {
  font-size: 2rem;
}
footer p {
  padding: 0;
  padding-bottom: 1em;
  margin: 0;
}

/* -------------------------------- 404 PAGE -------------------------------- */
.page404-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em;
}
.page404-container p.aos-init.aos-animate {
  padding: 0.5em 0;
}
.page404-container .text404 {
  text-align: center;
}
.page404-container .text404 h2 {
  padding-top: 0;
  font-size: 2.5rem;
  text-transform: uppercase;
}
.page404-container .text404 p {
  padding: 0;
}

#tictactoeContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin: 0 auto;
}
#tictactoeContainer a {
  margin: 0 auto;
}
#tictactoeContainer button {
  padding: 1.75em 2em;
  width: clamp(12rem, 14vw, 15vw);
  height: auto;
  background: #D0473E;
  border-radius: 20px;
  border: 2px solid #000;
  border-left: 8px solid #631A16;
  border-bottom: 8px solid #631A16;
  font-size: medium;
  color: white;
  text-transform: uppercase;
  width: 15rem;
  padding: 1em;
  background: #66B9B4;
  color: black;
  border-left: 8px solid #123131;
  border-bottom: 8px solid #123131;
}
#tictactoeContainer button:hover {
  background-color: #66B9B4;
  border-bottom: 8px solid #233e34;
  border-left: 8px solid #233e34;
}
#tictactoeContainer button:hover {
  background-color: #D0473E;
  border-left: 8px solid #631A16;
  border-bottom: 8px solid #631A16;
  color: white;
}
#tictactoeContainer img {
  width: 40%;
  margin: 0 auto;
}

/* -------------------------------------------------------------------------- */
/*                              RESPONSIVE MEDIA                              */
/* -------------------------------------------------------------------------- */
/* ------------------------------- TABLET SIZE ------------------------------ */
@media (max-width: 1512px) {
  header nav .nav-contents .logo-wrapper {
    padding: 1em 6em;
  }
  .section-container.homepage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: 100vh;
  }
  .section-container.homepage #hero-text {
    display: flex;
    flex-direction: column;
    margin-top: 5em;
    justify-content: left;
  }
  .section-container.homepage #hero-text h1 {
    font-size: 8rem;
    line-height: 7rem;
    padding: 0.5em;
  }
  .section-container.homepage #hero-text p {
    padding: 0;
    padding-left: 4.5em;
    padding-bottom: 1em;
    font-size: 1rem;
    width: 50%;
  }
  .section-container.homepage #hero-text button {
    padding: 1.75em 2em;
    width: clamp(12rem, 14vw, 15vw);
    height: auto;
    background: #D0473E;
    border-radius: 20px;
    border: 2px solid #000;
    border-left: 8px solid #631A16;
    border-bottom: 8px solid #631A16;
    font-size: medium;
    color: white;
    text-transform: uppercase;
    width: 15rem;
    padding: 1em;
    margin-left: 4rem;
  }
  .section-container.homepage #hero-text button:hover {
    background-color: #66B9B4;
    border-bottom: 8px solid #233e34;
    border-left: 8px solid #233e34;
  }
  .section-container.homepage #heroContainer {
    width: 60%;
    position: relative;
    bottom: 90%;
    right: -45%;
    display: flex;
    align-items: center;
  }
  #carousel {
    top: 88%;
  }
  .section-container.about {
    display: grid;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
  }
  .section-container.about #bagContainer {
    position: absolute;
    left: -5%;
    transform: scaleX(-1);
  }
  .section-container.about div {
    position: absolute;
    right: 0;
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 3em;
  }
  .section-container.about div h2,
  .section-container.about div span {
    text-align: center;
  }
  .section-container.about div span {
    position: relative;
    left: 20%;
    top: -3rem;
    width: 2rem;
    text-align: right;
  }
  .section-container.about div span img {
    width: 30vw;
  }
  .section-container.about div p {
    padding: 0 0 3em 3em;
    width: 90%;
    display: flex;
    justify-content: center;
  }
  section.section.s3 {
    background-color: white;
    height: 100vh;
  }
  section.section.s3 .product-list {
    flex-wrap: wrap;
    padding: 0 5em;
    width: 100%;
  }
  section.section.s3 .product-list img {
    width: 60%;
    padding: 0.5em;
  }
  section.section.s3 span img {
    width: 30%;
    position: relative;
    left: 0;
    top: 0;
  }
  section.section.s3 .button-wrapper {
    display: flex;
    justify-content: right;
    padding-right: 2em;
    position: relative;
    z-index: 10;
  }
  section.section.s3 .button-wrapper button {
    padding: 1.75em 2em;
    width: clamp(12rem, 14vw, 15vw);
    height: auto;
    background: #D0473E;
    border-radius: 20px;
    border: 2px solid #000;
    border-left: 8px solid #631A16;
    border-bottom: 8px solid #631A16;
    font-size: medium;
    color: white;
    text-transform: uppercase;
    padding: 2em 0.5em;
    font-size: 0.75rem;
  }
  section.section.s3 .button-wrapper button:hover {
    background-color: #66B9B4;
    border-bottom: 8px solid #233e34;
    border-left: 8px solid #233e34;
  }
  .form-container form::before {
    padding: 0;
    padding-bottom: 1em;
    width: 80%;
  }
  .form-container form label {
    font-weight: 600;
    padding-bottom: 0.5em;
  }
  .form-container form textarea#subject {
    height: 8rem !important;
  }
}
/* --------------------------- MOBILE SCREEN SIZE --------------------------- */
@media (max-width: 800px) {
  h2 {
    font-size: 1.5rem;
  }
  header nav .nav-contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Hamburger Menu Styles */
  }
  header nav .nav-contents .logo-wrapper {
    padding: 1em 3em;
  }
  header nav .nav-contents #overlay-menu {
    position: fixed;
    top: 0%;
    right: 0;
    height: 100vh;
    width: 100vw;
    background: #D0473E;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  header nav .nav-contents #overlay-menu.overlay-visible {
    opacity: 1;
    visibility: visible;
  }
  header nav .nav-contents #menu {
    list-style: none;
    padding: 0;
    text-align: center;
    display: none;
  }
  header nav .nav-contents #overlay-menu.overlay-visible #menu {
    display: block;
  }
  header nav .nav-contents #menu li {
    border: none;
    margin: 20px 0;
  }
  header nav .nav-contents #menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
  }
  header nav .nav-contents #hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 1.5rem;
    cursor: pointer;
    position: absolute;
    z-index: 999;
    top: 70%;
    right: 0;
    transform: translateY(-50%);
  }
  header nav .nav-contents #hamburger .line {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: 0.3s;
  }
  header nav .nav-contents #hamburger.open .line:nth-child(1) {
    transform: rotate(50deg) translate(5px, 6px);
  }
  header nav .nav-contents #hamburger.open .line:nth-child(2) {
    opacity: 0;
  }
  header nav .nav-contents #hamburger.open .line:nth-child(3) {
    transform: rotate(-50deg) translate(5px, -5px);
  }
  header header nav .social-wrapper i {
    padding: 0;
  }
  .section-container.homepage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: 100vh;
  }
  .section-container.homepage #hero-text {
    display: flex;
    flex-direction: column;
    margin-top: 6em;
    justify-content: left;
  }
  .section-container.homepage #hero-text h1 {
    font-size: 3.5rem;
    line-height: 4rem;
    padding: 0;
    padding-left: 0.5em;
    margin-top: 4rem;
    width: 90%;
    text-align: center;
  }
  .section-container.homepage #hero-text p {
    padding: 0;
    padding-left: 3em;
    padding-bottom: 1em;
    padding-top: 2em;
    font-size: 1rem;
    width: 90%;
    text-align: center;
  }
  .section-container.homepage #hero-text button {
    padding: 1.75em 2em;
    width: clamp(12rem, 14vw, 15vw);
    height: auto;
    background: #D0473E;
    border-radius: 20px;
    border: 2px solid #000;
    border-left: 8px solid #631A16;
    border-bottom: 8px solid #631A16;
    font-size: medium;
    color: white;
    text-transform: uppercase;
    width: 12rem;
    padding: 1em;
    margin-left: 1rem;
    font-size: 0.75rem;
    position: absolute;
    top: 45%;
    right: 35%;
    z-index: 99;
  }
  .section-container.homepage #hero-text button:hover {
    background-color: #66B9B4;
    border-bottom: 8px solid #233e34;
    border-left: 8px solid #233e34;
  }
  .section-container.homepage #heroContainer {
    width: 100%;
    position: relative;
    bottom: 20%;
    right: 5%;
    display: flex;
    align-items: center;
  }
  #carousel {
    background-color: white;
    height: 10%;
    display: flex;
    position: absolute;
    top: 90%;
  }
  #carousel ul {
    display: flex;
    align-items: center;
  }
  #carousel ul li img {
    width: 40%;
  }
  .section-container.about {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section-container.about #bagContainer {
    width: 100vw;
    position: absolute;
    bottom: 40%;
  }
  .section-container.about div {
    width: 100vw;
    z-index: 5;
  }
  .section-container.about div h2 {
    position: relative;
    top: 1rem;
    padding-left: 2em;
  }
  .section-container.about div span {
    position: relative;
    top: -50%;
    left: 16%;
    width: 20rem;
  }
  .section-container.about div span img {
    width: 80%;
    position: relative;
  }
  .section-container.about div p {
    position: absolute;
    top: 100%;
    font-size: 1rem;
    padding: 3em;
    padding-left: 5.5em;
    text-align: center;
  }
  section.section.s3 {
    height: auto;
  }
  section.section.s3 h2 {
    margin-top: 4rem;
  }
  section.section.s3 .product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  section.section.s3 .product-list img {
    width: 10rem;
    padding: 1em;
  }
  section.section.s3 span img {
    width: 20rem;
    position: relative;
    right: 10%;
    top: 0%;
  }
  section.section.s3 .button-wrapper {
    width: 100vw;
    display: flex;
    justify-content: center;
    padding: 0;
  }
  section.section.s3 .button-wrapper button {
    background-color: #D0473E;
    width: 100vw;
    height: 5vh;
    border-style: none;
    border-radius: 0;
    position: relative;
    bottom: -1.5rem;
  }
  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
  }
  .form-container {
    width: 100%;
    /* ------------------------------ CONTACT FORM ------------------------------ */
  }
  .form-container .title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 5em;
  }
  .form-container .title-wrapper h2,
  .form-container .title-wrapper p,
  .form-container .title-wrapper span {
    text-align: center;
  }
  .form-container .title-wrapper h2 {
    padding-top: 4em;
  }
  .form-container .title-wrapper span img {
    width: 70%;
    position: relative;
    right: 0;
    top: -20%;
  }
  .form-container form {
    width: 85vw;
  }
  .form-container form::before {
    content: "Your feedback is valuable to us. Let us know what you think about our products and services.";
    text-align: center;
    width: 100%;
  }
  .form-container form label {
    font-weight: 600;
    padding-bottom: 0.5em;
  }
  .form-container form input,
  .form-container form textarea {
    width: 100%;
  }
  #penContainer {
    width: 60vw;
    position: relative;
    left: 40%;
    bottom: 20%;
  }
  .copyright span {
    width: 100vw;
    position: absolute;
    bottom: 0;
    text-align: center;
    background-color: #66B9B4;
    padding: 1em 0;
  }
  .page404-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .page404-container .text404 h2 {
    font-size: 1.5rem;
    margin-top: 3em;
  }
  .page404-container .text404 p {
    font-size: 1rem;
    line-height: 0;
  }
}/*# sourceMappingURL=style.css.map */