@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home {
  height: 100%;
  padding-top: 40vh;
  overflow: hidden;
  align-items: center;
  text-align: center;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.8), rgba(39, 39, 39, 0.3)), url("../img/model.jpg") center bottom;
  background-size: cover;
  position: relative;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/model.jpg") center bottom;
  background-size: cover;
  z-index: -1;
  transform: translateZ(-1px) scale(1.1);
  filter: blur(2px);
}
.home__greeting {
  width: 40%;
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .home__greeting {
    width: 80%;
  }
}
.home__name {
  font-size: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
  border-bottom: 2px solid #fff;
  animation: slideInUp 0.8s ease-out;
}
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .home__name {
    font-size: 3.5rem;
  }
}
.home__name--last {
  color: #ff652f;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.home__name--last::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: #ff652f;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.home__name--last:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.home .centered__box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.home h2 {
  animation: slideInRight 0.8s ease-out;
  animation-delay: 0.3s;
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.menu-btn {
  position: absolute;
  z-index: 1;
  right: 1rem;
  top: 1rem;
  height: 20px;
  width: 28px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.menu-btn:hover {
  transform: scale(1.1);
}
.menu-btn__burger {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burger::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 28px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burger::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 20px;
  height: 3px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.menu-btn__burger.open {
  background: transparent;
}
.menu-btn__burger.open::before {
  transform: rotate(45deg) translate(5px, 8px);
}
.menu-btn__burger.open::after {
  width: 28px;
  transform: rotate(-45deg) translate(3px, -7px);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  opacity: 0.95;
  visibility: hidden;
}
.nav.open {
  visibility: visible;
}
.nav .menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  background: #272727;
  list-style-type: none;
  padding-right: 1rem;
  transform: translateY(-100%);
  transition: all 0.5s ease-in-out;
}
.nav .menu-nav.open {
  transform: translateY(0);
}
.nav .menu-nav__item {
  transform: translateX(100vw);
  transition: all 0.5s ease-in-out;
}
.nav .menu-nav__item.open {
  transform: translateX(0);
}
.nav .menu-nav__item.active > a {
  color: #ff652f;
  position: relative;
}
.nav .menu-nav__item.active > a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ff652f;
  bottom: 1.5rem;
  left: 0;
}
.nav .menu-nav__link {
  display: inline-block;
  font-size: 2rem;
  padding: 2rem 0;
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.nav .menu-nav__link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff652f;
  bottom: 1.5rem;
  left: 0;
  transition: width 0.3s ease;
}
.nav .menu-nav__link:hover {
  color: #ff652f;
}
.nav .menu-nav__link:hover::after {
  width: 100%;
}

.menu-nav__item:nth-child(1) {
  transition-delay: 0.25s;
}

.menu-nav__item:nth-child(2) {
  transition-delay: 0.35s;
}

.menu-nav__item:nth-child(3) {
  transition-delay: 0.45s;
}

.menu-nav__item:nth-child(4) {
  transition-delay: 0.55s;
}

.about {
  padding-bottom: 2rem;
}
.about__bio-image {
  height: 50vh;
  width: 100%;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.3)), url("../img/model-2.jpg") center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.about__bio-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/model-2.jpg") center;
  background-size: cover;
  z-index: -1;
  transition: transform 10s ease;
}
.about__bio-image:hover::before {
  transform: scale(1.1);
}
.about__bio-image p {
  margin-bottom: 2rem;
  font-size: 1rem;
  animation: slideInUp 0.8s ease-out;
}
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.about__bio {
  width: 80%;
  text-align: center;
  animation: fadeIn 1s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about__bio .text-secondary {
  padding-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.about__bio .text-secondary::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: #ff652f;
  bottom: 0;
  left: 25%;
}
.about .jobs {
  width: 60vw;
  margin: 2rem auto 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .about .jobs {
    width: 80vw;
  }
}
@media screen and (max-width: 768px) {
  .about .jobs {
    width: 90vw;
  }
}
.about .jobs__job {
  background: #414141;
  padding: 1.5rem;
  border-bottom: 5px solid #ff652f;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease-in;
}
.about .jobs__job:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about .jobs__job:nth-child(odd) {
  animation-delay: 0.2s;
}
.about .jobs__job:nth-child(even) {
  animation-delay: 0.4s;
}
.about .jobs__job .link {
  color: lightblue;
  transition: color 0.3s ease;
}
.about .jobs__job .link:hover {
  color: #ff652f;
}
.about .jobs__job p {
  margin: 1rem 0;
  line-height: 1.6;
}
.about .jobs h2, .about .jobs h3 {
  margin: 0.5rem 0;
}
.about .jobs h5 {
  margin: 0.3rem 0;
  color: #d9d9d9;
}
.about .jobs ul {
  list-style-type: none;
}
.about .jobs ul li {
  padding: 3px 15px;
  position: relative;
}
.about .jobs ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #ff652f;
}

.projects {
  padding-bottom: 2rem;
}
.projects__bio-image {
  height: 50vh;
  width: 100%;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.8), rgba(39, 39, 39, 0.3)), url("../img/projects.jpg") center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.projects__bio-image .text-secondary {
  margin-bottom: 2rem;
  font-size: 2rem;
}
.projects__items {
  width: 85vw;
  margin: 3rem auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .projects__items {
    width: 90vw;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-gap: 2rem;
  }
}
.projects__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease-out;
  background: #1a1a1a;
  transform-origin: center bottom;
  will-change: transform, box-shadow;
}
.projects__item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
}
.projects__item:hover::after {
  opacity: 1;
}
.projects__item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
.projects__item:hover .projects__btns {
  opacity: 1;
}
.projects__item:hover .projects__item__name {
  background: rgba(255, 101, 47, 0.9);
  color: #000;
}
.projects__item:hover .projects__btn {
  opacity: 1;
  transform: translateY(0);
}
.projects__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(39, 39, 39, 0.1), rgba(39, 39, 39, 0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.projects__item img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.9);
  will-change: transform, filter;
}
@media screen and (max-width: 768px) {
  .projects__item img {
    height: 220px;
  }
}
.projects__item__name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px;
  background: rgba(39, 39, 39, 0.9);
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  border-top: 3px solid #ff652f;
  z-index: 3;
  transition: background 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .projects__item__name {
    padding: 12px;
    font-size: 1.1rem;
  }
}
.projects .social-icons {
  font-size: 10px;
  display: flex;
  flex-direction: column;
}
.projects footer {
  font-size: 0.8rem;
  transform: rotate(90deg) translate(-4rem, -5rem);
}
.projects__btns {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.projects__btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
  pointer-events: auto;
  will-change: transform, opacity;
}
.projects__btn i {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
}
.projects__btn:hover {
  transform: translateY(-3px);
}
.projects__btn:hover i {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .projects__btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  .projects__btn i {
    font-size: 1.1rem;
  }
}
.projects__btn.preview-btn {
  background: #ff652f;
  color: #000;
}
.projects__btn.preview-btn:hover {
  background: white;
  color: #ff652f;
  border-color: #ff652f;
}
.projects__btn.github-btn {
  background: #333;
  color: white;
}
.projects__btn.github-btn:hover {
  background: white;
  color: #333;
  border-color: #333;
}
.projects__tech-stack {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
}
.projects__tech-stack .tech-tag {
  background: rgba(255, 101, 47, 0.9);
  color: #000;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: bold;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.projects__tech-stack .tech-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .projects__tech-stack .tech-tag {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}

.featured-project {
  grid-column: span 2;
}
@media screen and (max-width: 768px) {
  .featured-project {
    grid-column: span 1;
  }
}
.featured-project .projects__item__name {
  font-size: 1.5rem;
  padding: 22px;
}
.featured-project img {
  height: 350px !important;
}
@media screen and (max-width: 768px) {
  .featured-project img {
    height: 250px !important;
  }
}
.featured-project::before {
  content: "Featured";
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ff652f;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tech-tag {
  animation: fadeIn 0.5s ease forwards;
  animation-delay: var(--delay, 0s);
}

.projects__tech-stack .tech-tag:nth-child(1) {
  --delay: 0s;
}

.projects__tech-stack .tech-tag:nth-child(2) {
  --delay: 0.1s;
}

.projects__tech-stack .tech-tag:nth-child(3) {
  --delay: 0.2s;
}

.projects__tech-stack .tech-tag:nth-child(4) {
  --delay: 0.3s;
}

.contact {
  height: 100%;
  padding-top: 30vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(to right, rgba(39, 39, 39, 0.9), rgba(39, 39, 39, 0.5)), url("../img/contact.png") center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/contact.png") center;
  background-size: cover;
  z-index: -1;
  transition: transform 10s ease;
}
.contact:hover::before {
  transform: scale(1.1);
}
.contact__header {
  text-align: center;
  margin-bottom: 2rem;
}
.contact__header h1 {
  font-size: 3rem;
  color: #ff652f;
  margin-bottom: 1rem;
  text-transform: uppercase;
  animation: slideInUp 0.8s ease-out;
}
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.contact__header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-in;
  animation-delay: 0.5s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contact__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  font-size: 1.1rem;
  width: 80%;
  max-width: 1200px;
}
.contact__list > div {
  background: rgba(65, 65, 65, 0.8);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #ff652f;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s ease-in;
  text-align: center;
}
.contact__list > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contact__list > div i {
  font-size: 1.8rem;
  color: #ff652f;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}
.contact__list > div:hover {
  background: rgba(77, 77, 77, 0.9);
}
.contact__list > div:hover i {
  transform: scale(1.2);
}
.contact__list > div:nth-child(1) {
  animation-delay: 0.1s;
}
.contact__list > div:nth-child(2) {
  animation-delay: 0.2s;
}
.contact__list > div:nth-child(3) {
  animation-delay: 0.3s;
}
.contact__list > div:nth-child(4) {
  animation-delay: 0.4s;
}
.contact .social-icons {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeIn 1s ease-in;
  animation-delay: 0.8s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contact .social-icons a {
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.contact .social-icons a:hover {
  transform: translateY(-10px);
  color: #ff652f;
}
.contact .social-icons a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ff652f;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.contact .social-icons a:hover::after {
  transform: scaleX(1);
}
.contact .text-secondary {
  margin-top: 8px;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.contact footer {
  margin-top: 2rem;
  padding: 1rem;
  font-style: italic;
  animation: fadeIn 1s ease-in;
  animation-delay: 1s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contact__form-container {
  width: 80%;
  max-width: 800px;
  margin: 3rem auto;
  background: rgba(52, 52, 52, 0.8);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-in;
  animation-delay: 0.6s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contact__form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ff652f;
  font-size: 1.8rem;
}
.contact__form {
  display: grid;
  grid-gap: 1.5rem;
}
.contact__form .form-group {
  display: flex;
  flex-direction: column;
}
.contact__form .form-group label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #e6e6e6;
}
.contact__form .form-group input, .contact__form .form-group textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}
.contact__form .form-group input:focus, .contact__form .form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-left: 3px solid #ff652f;
}
.contact__form .form-group textarea {
  resize: vertical;
}
.contact__form .btn {
  background: #ff652f;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-top: 1rem;
}
.contact__form .btn:hover {
  background: #fb4100;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.contact__form .btn:active {
  transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
  .contact__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .contact__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 25vh;
  }
  .contact__header h1 {
    font-size: 2.5rem;
  }
  .contact__list {
    width: 90%;
  }
}

@media screen and (max-width: 768px) and (min-width: 100px) {
  .home {
    font-size: 10px;
  }
  .home .social-icons {
    display: flex;
    flex-direction: column;
  }
  .home footer {
    font-size: 0.8rem;
    transform: rotate(90deg) translate(-4rem, -5rem);
  }
}
@media screen and (min-width: 768px) {
  .menu-btn {
    visibility: hidden;
  }
  .nav {
    visibility: visible;
  }
  .nav .menu-nav {
    display: block;
    transform: translateY(0);
    height: 100%;
    background: transparent;
    text-align: center;
  }
  .nav .menu-nav__item {
    display: inline;
    padding-right: 1.5rem;
  }
  .nav .menu-nav__link {
    font-size: 1.5rem;
  }
  .about__bio {
    font-size: 1.5rem;
  }
  .projects__bio-image {
    height: 40vh;
  }
  .projects__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .projects .text-secondary {
    font-size: 3rem;
  }
  .contact__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .projects__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1600px) {
  .projects__bio-image {
    height: 50vh;
  }
  .projects__items {
    grid-template-columns: repeat(4, 1fr);
  }
  .contact__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
body {
  background: #272727;
  color: #fff;
  height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1;
}

h1, h2, h3 {
  font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
}

.text-secondary {
  color: #ff652f;
}

header {
  position: fixed;
  z-index: 2;
  width: 100%;
  padding: 1rem;
}

main {
  height: 100%;
  width: 100%;
}
main .social-icons {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}
main .social-icons a {
  padding: 0.4rem;
  transition: all 0.5s ease-in-out;
}
main .social-icons a:hover {
  color: #ff652f;
}

footer {
  font-size: 1rem;
  position: fixed;
  bottom: 0.4rem;
  text-align: right;
  right: 1rem;
  padding: 1rem;
  color: #fff;
}/*# sourceMappingURL=main.css.map */