/* Base styles */
:root {
  --primary-color: #2563eb;
  --text-color: #1f2937;
  --bg-color: #ffffff;
  --card-bg: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --hover-shadow: rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif; */
  font-family: "Quicksand", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

hr {
  width: 70em;
  height: 1px;
  background-color: #888;
  border: none;
  margin: 20px auto;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-color);
  padding: 1rem;
  box-shadow: 0 2px 4px var(--shadow-color);
  z-index: 1000;
  transition: transform 0.3s ease;
}

header.hidden {
  transform: translateY(-100%);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-right {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-placeholder {
  width: 300px;
  height: 300px;
  background-color: var(--card-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../pfp.webp");
  background-size: cover;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 20px rgba(0, 183, 255, 0.7),
    0 0 40px rgba(0, 183, 255, 0.7),
    0 0 60px rgba(0, 183, 255, 0.9);
}

.image-placeholder img {
  width: 60%;
  height: 60%;
  color: var(--text-color);
  opacity: 0.7;
}

/* About Section */
#about {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Projects Section */
#projects {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px var(--shadow-color);
}

.project-image-placeholder {
  width: 100%;
  height: 200px;
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-image-placeholder svg {
  width: 30%;
  height: 30%;
  color: var(--text-color);
  opacity: 0.5;
}

.project-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
  color: var(--text-color);
}

.project-card p {
  padding: 0 1.5rem 1rem;
  color: #666;
}

.project-tags {
  padding: 0 1.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-preview {
  height: 200px;
  overflow: hidden;
}

.project-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tag {
  background-color: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.view-project {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  /* dodato za prebacivanje na dno */
  margin-top: auto;
  max-width: fit-content;
}

.view-project:hover {
  background-color: #1d4ed8;
}

/* PHOTOGRAPHY SECTION */
.photo-section {
  margin: 6rem 0;
  padding: 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.photo-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.photo-desc {
  color: #aaa;
  max-width: 500px;
  margin-bottom: 2rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  border-radius: 0.5rem;
}

.photo-grid img:hover {
  transform: scale(1.03);
  filter: brightness(0.9);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-info {
  text-align: center;
  color: white;
}

.lightbox-caption {
  font-size: 1.1rem;
  margin: 0;
}

/* Contact Section */
#contact {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: flex;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-item span {
  color: var(--text-color);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.social-link:hover {
  color: var(--primary-color);
  background-color: var(--card-bg);
}

.social-link svg {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.social-link:hover svg {
  transform: translateY(-2px);
}

.contact-form {
  flex: 1;
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
  transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  opacity: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  color: #666;
  transition: all 0.3s ease;
  pointer-events: none;
  background-color: var(--bg-color);
  padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem);
  font-size: 0.875rem;
  color: var(--primary-color);
}

.validation-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #dc2626;
}

button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background-color: var(--primary-color-dark);
}

button[type="submit"]:disabled {
  background-color: var(--border-color);
  cursor: not-allowed;
  opacity: 0.7;
}

button[type="submit"]:disabled:hover {
  background-color: var(--border-color);
  transform: none;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
  z-index: 999;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Dark Mode Toggle */
#darkModeToggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.25rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--card-bg);
  color: var(--text-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px var(--shadow-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px var(--shadow-color);
}

.back-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  font-size: 2rem;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1001;
}

.lightbox-prev {
  left: 10px;
}
.lightbox-next {
  right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Sakrij dugmiće na malim ekranima ako smetaju preko slike */
@media (max-width: 600px) {
  .lightbox-prev,
  .lightbox-next {
    padding: 10px;
    font-size: 1.5rem;
  }
}

/* Update responsive styles */
@media (max-width: 768px) {
  .back-to-top {
    width: 2.5rem;
    height: 2.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  #hero,
  #about,
  #projects,
  #contact {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  hr {
    width: 90%;
  }
}

@media (max-width: 968px) {
  header {
    padding: 0.75rem;
    border: none;
  }

  nav {
    padding: 0 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  #hero {
    min-height: 85vh;
    padding-top: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .image-placeholder {
    width: 250px;
    height: 250px;
  }

  #about {
    padding: 3rem 1rem;
  }

  #about h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  #about h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
  }

  #about h4 {
    font-size: 1rem;
    margin: 0.75rem 0 0.25rem;
  }

  #projects {
    padding: 3rem 1rem;
  }

  #projects h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .project-card h3 {
    font-size: 1.125rem;
    padding: 1rem 1rem 0.5rem;
  }

  .project-card p {
    padding: 0 1rem 0.75rem;
    font-size: 0.95rem;
  }

  .project-tags {
    padding: 0 1rem 0.75rem;
    gap: 0.4rem;
  }

  .tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
  }

  .view-project {
    margin: 0 1rem 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .photo-section {
    padding: 0 1rem;
    margin: 4rem 0;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  #contact {
    padding: 3rem 1rem;
  }

  #contact h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }

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

  .contact-details {
    align-items: center;
  }

  .social-links {
    align-items: center;
  }

  .contact-item span {
    font-size: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  button[type="submit"] {
    padding: 0.65rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  header {
    padding: 0.5rem;
    border: none;
  }

  .logo {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  #hero {
    min-height: 70vh;
    padding-top: 4.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .hero-text h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .image-placeholder {
    width: 200px;
    height: 200px;
  }

  .image-placeholder svg {
    width: 50%;
    height: 50%;
  }

  hr {
    width: 100%;
    margin: 15px auto;
  }

  #about,
  #projects,
  #contact {
    padding: 2rem 1rem;
  }

  #about h2,
  #projects h2,
  #contact h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  #about h3 {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.25rem;
  }

  #about h4 {
    font-size: 0.95rem;
    margin: 0.5rem 0 0.2rem;
  }

  #about p,
  #contact p {
    font-size: 0.95rem;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-image-placeholder {
    height: 150px;
  }

  .project-card h3 {
    padding: 1rem 1rem 0.3rem;
    font-size: 1rem;
  }

  .project-card p {
    padding: 0 1rem 0.5rem;
    font-size: 0.9rem;
  }

  .project-tags {
    padding: 0 1rem 0.5rem;
    gap: 0.3rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
  }

  .view-project {
    margin: 0 1rem 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .photo-section {
    padding: 0 1rem;
    margin: 2rem 0;
  }

  .photo-section h2 {
    font-size: 1.25rem;
  }

  .photo-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .contact-details {
    gap: 1rem;
  }

  .contact-item {
    gap: 0.75rem;
  }

  .contact-item span {
    font-size: 0.95rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    gap: 0.75rem;
    padding: 0.4rem;
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  .form-group textarea {
    min-height: 120px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  button[type="submit"] {
    padding: 0.6rem;
    font-size: 0.9rem;
  }

  footer {
    padding: 1.5rem;
    font-size: 0.9rem;
  }

  .back-to-top {
    width: 2rem;
    height: 2rem;
    bottom: 1rem;
    right: 1rem;
  }

  .back-to-top svg {
    width: 1rem;
    height: 1rem;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background-color: var(--bg-color);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 0;
    border: none;
  }

  .nav-links.active {
    max-height: 300px;
    padding: 1rem 0;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition:
      background-color 0.3s ease,
      color 0.3s ease;
  }

  .nav-link:hover {
    background-color: var(--card-bg);
    color: var(--primary-color);
  }

  #darkModeToggle {
    font-size: 1rem;
    padding: 0.5rem;
  }

  #hero {
    min-height: 100vh;
    padding-top: 4rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }

  .hero-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .image-placeholder {
    width: 150px;
    height: 150px;
  }

  #about,
  #projects,
  #contact {
    padding: 1.5rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* dodat flex za centriranje na tel */
  }

  #about h2,
  #projects h2,
  #contact h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  #about h3 {
    font-size: 1rem;
    margin: 0.5rem 0 0.2rem;
  }

  #about h4 {
    font-size: 0.9rem;
  }

  #about p,
  #contact p,
  .contact-item span,
  .social-link {
    font-size: 0.9rem;
  }

  .projects-grid {
    gap: 0.75rem;
  }

  .project-image-placeholder {
    height: 120px;
  }

  .project-card h3 {
    padding: 0.75rem 0.75rem 0.2rem;
    font-size: 0.95rem;
  }

  .project-card p {
    padding: 0 0.75rem 0.4rem;
    font-size: 0.85rem;
  }

  .project-tags {
    padding: 0 0.75rem 0.4rem;
    gap: 0.2rem;
  }

  .tag {
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
  }

  .view-project {
    margin: 0 0.75rem 1rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .photo-section {
    padding: 0 1rem;
    margin: 1.5rem 0;
  }

  .photo-section h2 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }

  .photo-desc {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
  }

  .lightbox-close {
    top: -30px;
    font-size: 1.5rem;
  }

  .contact-container {
    gap: 1.5rem;
  }

  .contact-details {
    gap: 0.75rem;
  }

  .contact-item svg {
    width: 20px;
    height: 20px;
  }

  .social-links {
    gap: 0.75rem;
  }

  .social-link svg {
    width: 20px;
    height: 20px;
  }

  .contact-form {
    padding: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .validation-message {
    font-size: 0.8rem;
  }

  button[type="submit"] {
    padding: 0.55rem;
    font-size: 0.85rem;
  }

  footer {
    padding: 1rem;
    font-size: 0.85rem;
  }
}
