@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

@font-face {
  src: url(/fonts/Spirit.woff2);
  font-family: 'spirits';
  font-display: swap;
}

* {
  cursor: url(https://cur.cursors-4u.net/cursors/cur-8/cur762.cur), auto !important;
  font-family: 'Nunito', sans-serif; 
  box-sizing: border-box;
}

body {
  margin: 0;
  display: flex;
  justify-content: center; 
  align-items: center;    
  height: 100vh;
  background-image: url(/media/backgrounds/pinkcheck.png);
  background-size: 40px;
  background-repeat: repeat;
  overflow: hidden;
  padding: 20px; 
}

::selection {
  background-color: #feeef6;
  color: #606060; 
}

.clipboard-container {
  background: 
    linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 30%), 
    linear-gradient(135deg, #fef2f7 0%, #f7d7e6 100%);
  width: 100%;
  max-width: 550px;
  height: 90vh; 
  border-radius: 30px;
  padding: 60px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin: auto;
  box-shadow: 
    0 5px 10px rgba(0, 0, 0, 0.15), 
    0 40px 80px rgba(0, 0, 0, 0.1),
    inset 0 2px 2px rgba(255, 255, 255, 0.8), 
    inset 0 -4px 6px rgba(0, 0, 0, 0.02);  
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.clipboard-clip {
  width: 150px;
  height: 55px;
  background: linear-gradient(to bottom, #e0e0e0 0%, #ffffff 20%, #b0b0b0 50%, #808080 55%, #d0d0d0 100%);
  border-radius: 10px 10px 4px 4px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  border: 1px solid #999;
}

.clip-hole {
  width: 16px;
  height: 16px;
  background-color: #fce4ec; 
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,0,0,0.1);
}

.paper-area {
  background-color: #ffffff;
  background-image: 
    linear-gradient(90deg, rgba(0,0,0,0.01) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,0.01) 1px, transparent 1px);
  background-size: 20px 20px;
  flex: 1; 
  margin: -35px 5px 10px 5px; 
  border-radius: 4px; 
  display: flex;
  flex-direction: column;
  overflow: hidden; 
  position: relative;
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.05),
    1px 1px 0 #fff, 1px 1px 0 #d1d1d1,
    2px 2px 0 #fff, 2px 2px 0 #d1d1d1,
    3px 3px 0 #fff, 3px 3px 0 #d1d1d1,
    4px 4px 0 #fff, 4px 4px 0 #d1d1d1,
    inset 0 15px 15px -10px rgba(0,0,0,0.05),
    inset 0 0 40px rgba(0,0,0,0.01);
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #d1d1d1;
  z-index: 5;
}

.blog-header {
  background-color: #ffffff;
  padding: 50px 35px 10px 35px;
  z-index: 20;
  flex-shrink: 0;
}

.blog-header h1 {
  text-align: center;
  color: #fedeec;
  font-family: 'spirits'; 
  font-size: 80px; 
  font-weight: bold;
  margin: 0; 
  text-transform: lowercase;      
  letter-spacing: 1px;
  text-shadow: 
    1px 1px 0px #cf88a7,              
    2px 2px 0px rgba(255, 255, 255, 0.8), 
    3px 3px 5px rgba(0, 0, 0, 0.08),   
    0px 0px 10px rgba(242, 196, 216, 0.3);
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.05);
  -webkit-user-select: none; 
  -ms-user-select: none;   
  user-select: none;         
  pointer-events: none;
}

.scroll-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 35px 35px 35px;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.scroll-content::-webkit-scrollbar {
  width: 0px; 
  background: transparent;
}

.post {
  margin-bottom: 35px;
}

.post h2 {
  font-size: 17px;
  color: #606060; 
  margin-top: 0;
  font-weight: 800;
  display: flex;
  flex-direction: row;
  align-items: center; 
  text-align: left;
}

.post h2::before {
  content: "";
  display: inline-block;
  width: 22px; 
  height: 22px; 
  background-image: url('https://kkul.neocities.org/media/graphics/heart.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px; 
  flex-shrink: 0;
}

.post p {
  line-height: 1.6;
  color: #606060; 
  margin: 0;
  font-weight: 500;
  font-size: 14px;
}