

.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    cursor: grab;
    position: absolute;
    user-select: none;
    text-align: center;
}

.card iframe {
    border-radius: 12px;
    display: block;
}

#affirmationText {
    font-size: 1.6rem;  
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;   
    margin: 0;
    padding: 10px;
}

.animal-cam {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 560px;
    height: 315px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.animal-cam iframe {
    width: 100%;
    height: 100%;
    border: none;
}


* { box-sizing: border-box; }

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


body {
  display: block; 
  min-height: 100vh;
  background: url('campfire.webp') no-repeat center center fixed;
  background-size: cover;
}

.navbar {
  width: 100%;
  background-color: #ffd9ef; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.navbar-inner {
  max-width: 1200px;      
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;    
  gap: 12px;
}

.logo {
  color: #a10d81;
  font-weight: 700;
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-link {
  color: #a10d81;
  text-decoration: none;
  font-size: 1rem;
  padding: 6px 8px;
  border-radius: 6px;
}

.nav-link:hover {
  background: rgba(13,71,161,0.06);
}

.nav-link.active {
  background: rgba(13,71,161,0.12);
  font-weight: 600;
}

.site-content {
  max-width: 1200px;
  margin: 16px auto; 
  padding: 12px;
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .navbar-inner { padding: 10px; }
  .nav-links { gap: 10px; }
  .site-content { margin: 8px; padding: 8px; }
}


