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

/* This is the settings for the homepage body, NOT the body for the rest of the HTML. I did this so the background of the hompeage is different from the 
rest of the website 
html, homepagebody {
  height: 100%;
  margin: 0;
}

homepagebody {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Verdana, sans-serif;
  background-image: url('https://github.com/Terran-M-R/Terran-Roberson.github.io/blob/main/Portfolio%20Background%20w%20Gradient.jpg?raw=true');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #ffffff;
}
*/

/* These are the settings for the background of the other HTMLs, not the homepage. If I want a background for the rest of the pages, I need to add
background-image: url(''); */

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Verdana, sans-serif;
  background-color: #0a0a0a;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(144, 224, 239, 0.03) 35px, rgba(144, 224, 239, 0.03) 70px);
  color: #ffffff;
  overflow-x: hidden;
  animation: pageFadeIn 0.4s ease-in;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* This Section makes the website title and social media links in the middle of the page and offset 300 pixels */
.websitetitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 55vh;
  text-align: center;
  color: white; 
}

.websitetitle h1 {
  font-size: 4rem;
  margin-bottom: 5px;
  transform: translateX(400px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
  
}

.websitetitle p {
  font-size: 1.5rem;
  transform: translateX(400px);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* These are the general settings for the header. The position allows it to remain at the top while one scrolls down each page */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  text-align: center;
  z-index: 100;
}

/* The navigation is part of the header. It is the word links to the other pages. Hover changes the way it looks when a mouse is over it. Active shows when 
a the user is currently on the page. Ex: One the hompeage, the Home link is in bold. On HTML, I need to put class = active on each that is actually active. */
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.5s ease;
  transition: all 0.3s ease, font-weight 0.5s;
}

nav a:hover {
  font-weight: bold;
  transform: translateY(-2px);
}

nav a.active {
  font-weight: 700;
}

/* The social links are underneath the website title. They are worded buttons to different social media platforms. When someone hovers over the links
the buttons move down 3 pixels and darken to let userers know they are clicking them. There is also a transition, it gets visibly darker as you hover*/

/* animations for page loading and more stuff on the index */

/* animation so the content of the pages move up into place as a page loads so it looks neat */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(300px) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(300px) translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

/* social media links, same as other social media links icon, not active at the moment, might use in the future  */
.social-links a {
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
  border: 2px solid transparent;
  transform: translateX(300px);
}

.social-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  transform: translateX(300px);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: rgba(144, 224, 239, 0.2);
  color: #90e0ef;
  border-color: rgba(144, 224, 239, 0.5);
  box-shadow: 0 8px 20px rgba(144, 224, 239, 0.3);
}

.social-links a:hover .social-icon {
  transform: scale(1.2) rotate(5deg);
}

/* animation so my name, the websitetitle, kind of pops out */
.websitetitle h1 {
  animation: fadeInUp 1s ease-out forwards, subtlePulse 3s ease-in-out infinite 2s;
}

@keyframes subtlePulse {
  0%, 100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  50% {
    text-shadow: 2px 2px 20px rgba(144, 224, 239, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
}

/* animation for header to appear onscreen after a delay so it looks neat*/
header {
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}





.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  transform: translateX(300px);
}

/* Might use social links again, but since replaced it */

/*.social-links a {
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s, background-color 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
  background-color: rgba(0, 0, 0, 0.9);
  color: #90e0ef;
} */ 

/* connect button on homepage/ same 3 buttons for links to social media on the connect page */

.connect-button-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.connect-button {
  padding: 15px 40px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.connect-button:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: rgba(144, 224, 239, 0.3);
  color: #90e0ef;
  border-color: #90e0ef;
  box-shadow: 0 8px 20px rgba(144, 224, 239, 0.4);
}

/* fun facts section on the index page */

.fun-facts-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px 40px 20px;
  margin-top: -30px;
  min-height: 250px;
}
.fun-facts-container {
  max-width: 700px;
  width: 90%;
  text-align: center;
}

.fun-facts-title {
  color: #90e0ef;
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: bold;
}

.fun-facts-carousel {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fun-fact-card {
  position: absolute;
  width: 100%;
  padding: 25px 40px;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(144, 224, 239, 0.3);
  color: #ffffff;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  box-sizing: border-box;
}

.fun-fact-card.active {
  opacity: 1;
  transform: translateX(0);
}

.fun-fact-card.exit-left {
  opacity: 0;
  transform: translateX(-100%);
}

.fun-fact-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(144, 224, 239, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover {
  background-color: rgba(144, 224, 239, 0.6);
  transform: scale(1.2);
}

.dot.active {
  background-color: #90e0ef;
  width: 12px;
  height: 12px;
}
/* about page w/ two columns */

.about-two-column {
  min-height: 100vh;
  padding: 100px 40px 60px 40px;
}

.about-two-column-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

/* about page left side containing photo */
.about-photo-side {
  position: sticky;
  top: 120px;
  text-align: center;
}

.about-photo-wrapper {
  width: 100%;
  margin-bottom: 25px;
}

.about-photo {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  border: 3px solid rgba(144, 224, 239, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(144, 224, 239, 0.3);
}

.about-name {
  font-size: 2.2rem;
  color: #90e0ef;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-tagline {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* about page, right side that has all the content */
.about-content-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-section-box {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(144, 224, 239, 0.3);
  transition: border-color 0.3s ease;
}

.about-section-box:hover {
  border-color: rgba(144, 224, 239, 0.6);
}

.about-section-box h2 {
  color: #90e0ef;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.about-section-box h3 {
  color: #90e0ef;
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.about-section-box p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

/* making about page two columns with photo and text on diff sides unlike previous version */
@media (max-width: 1024px) {
  .about-two-column-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-photo-side {
    position: relative;
    top: 0;
  }
  
  .about-photo {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .about-two-column {
    padding: 100px 20px 40px 20px;
  }
  
  .about-name {
    font-size: 1.8rem;
  }
  
  .about-photo {
    max-width: 250px;
  }
}


/* About page*/

.about-section-new {
  padding: 120px 40px 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.about-content {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(144, 224, 239, 0.2);
}

.about-title {
  font-size: 3rem;
  color: #90e0ef;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-bio {
  margin-bottom: 40px;
}

.about-bio p {
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-content h3 {
  color: #90e0ef;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Skills Grid */
.skills-section {
  margin-top: 30px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

.skill-item {
  background-color: rgba(144, 224, 239, 0.15);
  padding: 12px 16px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(144, 224, 239, 0.3);
}


/* Info Sections (Certifications, Awards, Community Service) */
.info-section {
  margin-top: 30px;
}

.info-list {
  margin-top: 10px;
  margin-left: 20px;
  line-height: 1.8;
}

.info-list li {
  margin-bottom: 8px;
}

/* Projects */

.projects-section {
  padding: 100px 40px 80px 40px;
  min-height: calc(100vh - 80px);
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 50px;
  color: #90e0ef;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.project-card {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(144, 224, 239, 0.3);
  border-radius: 12px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(144, 224, 239, 0.2);
  border-color: rgba(144, 224, 239, 0.6);
}

/* Projects */
.project-media-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.project-thumbnail {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(144, 224, 239, 0.4);
  transition: all 0.3s ease;
  display: block;
}

.project-media-enlarged {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enlarged-media {
  max-width: 90%;
  max-height: 400px;
  width: auto;
  height: auto;
  border-radius: 12px;
  border: 3px solid rgba(144, 224, 239, 0.8);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  object-fit: contain;
}

.project-card:hover .project-media-enlarged {
  opacity: 1;
  pointer-events: auto;
}

.project-card:hover .project-thumbnail {
  border-color: rgba(144, 224, 239, 0.8);
  box-shadow: 0 4px 12px rgba(144, 224, 239, 0.3);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.project-header h3 {
  color: #90e0ef;
  font-size: 1.4rem;
  margin: 0;
  flex: 1;
}

.project-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.project-description {
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-tag {
  background-color: rgba(144, 224, 239, 0.2);
  color: #90e0ef;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  border: 1px solid rgba(144, 224, 239, 0.3);
}

.project-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.project-link {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  background-color: rgba(144, 224, 239, 0.2);
  border-radius: 6px;
  border: 1px solid rgba(144, 224, 239, 0.4);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.project-link:hover {
  background-color: rgba(144, 224, 239, 0.4);
  transform: translateY(-2px);
}

/* xtra designs and stuff, moves some content up when page loads, padding  */

@media (max-width: 768px) {
  .about-section-new {
    padding: 100px 20px 40px 20px;
  }
  
  .about-content {
    padding: 25px;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .projects-section {
    padding: 100px 20px 60px 20px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  
  .projects-title {
    font-size: 2.5rem;
  }
  
  .websitetitle h1 {
    transform: translateX(0);
    font-size: 3rem;
  }
  
  .websitetitle p {
    transform: translateX(0);
  }
  
  .social-links {
    transform: translateX(0);
    flex-direction: column;
    align-items: center;
  }
}

/* This section is the space between the rest of the page and the footer */

section {
  margin-bottom: 0;
}

/* Organizations */

.organizations-section {
  padding: 100px 40px 80px 40px;
  min-height: calc(100vh - 80px);
}

.organizations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.organizations-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
  color: #90e0ef;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.organizations-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.organizations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.org-card {
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(144, 224, 239, 0.3);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.org-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(144, 224, 239, 0.2);
  border-color: rgba(144, 224, 239, 0.6);
}

.org-logo-placeholder {
  width: 100%;
  height: 120px;
  background-color: rgba(144, 224, 239, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid rgba(144, 224, 239, 0.3);
}

.org-logo-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #90e0ef;
}

.org-logo {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.org-name {
  font-size: 1.5rem;
  color: #90e0ef;
  margin-bottom: 8px;
  text-align: center;
}

.org-role {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1rem;
}

.org-description {
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.org-description p {
  color: rgba(255, 255, 255, 0.85);
}

.org-activities {
  margin-bottom: 20px;
}

.org-activities h4 {
  color: #90e0ef;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.org-activities ul {
  margin-left: 20px;
  line-height: 1.8;
}

.org-activities li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.org-activities strong {
  color: #ffffff;
}

.org-link {
  display: inline-block;
  color: #90e0ef;
  text-decoration: none;
  padding: 10px 20px;
  background-color: rgba(144, 224, 239, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(144, 224, 239, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  font-weight: bold;
}

.org-link:hover {
  background-color: rgba(144, 224, 239, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .organizations-section {
    padding: 100px 20px 60px 20px;
  }
  
  .organizations-title {
    font-size: 2.5rem;
  }
  
  .organizations-grid {
    grid-template-columns: 1fr;
  }
}

.hobbies-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hobbies-section h2 {
  font-size: 2.5rem;
  color: #90e0ef;
  text-align: center;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.hobby-card {
  background: rgba(26, 26, 26, 0.8);
  border: 2px solid rgba(144, 224, 239, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hobby-card:hover {
  transform: translateY(-8px);
  border-color: #90e0ef;
  box-shadow: 0 10px 30px rgba(144, 224, 239, 0.3);
}

.hobby-image-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #0a0a0a;
}

.hobby-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hobby-card:hover .hobby-image-container img {
  transform: scale(1.05);
}

.hobby-content {
  padding: 25px;
}

.hobby-content h3 {
  color: #90e0ef;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hobby-content p {
  color: #ffffff;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .hobbies-section {
    padding: 60px 20px;
  }

  .hobbies-section h2 {
    font-size: 2rem;
  }

  .hobbies-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hobby-image-container {
    height: 220px;
  }
}

/* Mobile Responsiveness for Index Page */
@media (max-width: 768px) {
  /* Reset the offset for mobile */
  .websitetitle {
    min-height: 70vh;
    padding: 20px;
  }

  .websitetitle h1 {
    font-size: 2.5rem;
    transform: translateX(0) !important;
    text-align: center;
  }

  .websitetitle p {
    font-size: 1.1rem;
    transform: translateX(0) !important;
    text-align: center;
  }

  /* Fix social links positioning */
  .social-links {
    transform: translateX(0) !important;
    flex-direction: column;
    gap: 15px;
  }

  .social-links a {
    transform: translateX(0) !important;
    width: 100%;
    justify-content: center;
  }

  .social-links a:hover {
    transform: translateY(-3px) scale(1.02) !important;
  }

  .social-icon {
    transform: translateX(0) !important;
  }

  /* Fix connect button */
  .connect-button-container {
    margin-top: 25px;
  }

  .connect-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  /* Fix animations to not use horizontal offset on mobile */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Fun facts section mobile */
  .fun-facts-section {
    padding: 20px 15px 40px 15px;
    min-height: auto;
  }

  .fun-facts-container {
    width: 95%;
  }

  .fun-facts-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .fun-fact-card {
    padding: 20px 20px;
  }

  .fun-fact-card p {
    font-size: 1rem;
  }

  .fun-facts-carousel {
    height: 180px;
  }

  /* Header mobile adjustments */
  header {
    padding: 15px 10px;
  }

  nav a {
    margin: 0 8px;
    font-size: 0.9rem;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .websitetitle h1 {
    font-size: 2rem;
  }

  .websitetitle p {
    font-size: 0.95rem;
  }

  nav a {
    margin: 0 5px;
    font-size: 0.85rem;
  }

  .fun-fact-card {
    padding: 15px;
  }

  .fun-fact-card p {
    font-size: 0.95rem;
  }
}





footer {
  margin-top: auto;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.8);
}
