김준송-옵션의 기초

·3 min read

? 옵션 = 선택권! 초등생도 이해하는 옵션 기초

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

body { font-family: 'Noto Sans KR', sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); padding: 20px; min-height: 100vh; }

.container { max-width: 950px; margin: 0 auto; background: white; border-radius: 25px; box-shadow: 0 25px 50px rgba(0,0,0,0.15); overflow: hidden; }

.header { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%); color: #2c3e50; text-align: center; padding: 50px 30px; }

.header h1 { font-size: 2.8em; font-weight: 900; margin-bottom: 15px; animation: bounce 2s infinite; }

@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

.chuseok-gift { font-size: 1.4em; background: #fff3cd; padding: 15px 25px; border-radius: 50px; display: inline-block; box-shadow: 0 5px 15px rgba(0,0,0,0.1); margin-bottom: 10px; }

.content { padding: 50px 40px; }

.section { margin-bottom: 50px; animation: fadeInUp 0.8s ease forwards; }

.section:nth-child(1) { animation-delay: 0.1s; } .section:nth-child(2) { animation-delay: 0.2s; } .section:nth-child(3) { animation-delay: 0.3s; } .section:nth-child(4) { animation-delay: 0.4s; }

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

.section h2 { font-size: 2.2em; color: #2c3e50; margin-bottom: 25px; padding-bottom: 15px; border-bottom: 4px solid #3498db; position: relative; }

.section h2::before { content: attr(data-emoji); font-size: 1.5em; margin-right: 15px; }

.choice-box { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); padding: 30px; border-radius: 20px; margin: 25px 0; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 3px dashed #27ae60; }

.choice-box h3 { font-size: 1.8em; color: #27ae60; margin-bottom: 20px; }

.price-tags { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; margin: 25px 0; }

.price-tag { background: white; padding: 20px 25px; border-radius: 15px; box-shadow: 0 8px 20px rgba(0,0,0,0.15); text-align: center; min-width: 120px; transition: transform 0.3s; }

.price-tag:hover { transform: translateY(-10px); }

.price-tag.high { border: 3px solid #e74c3c; color: #e74c3c; } .price-tag.medium { border: 3px solid #f39c12; color: #f39c12; } .price-tag.low { border: 3px solid #27ae60; color: #27ae60; }

.volatility { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); padding: 30px; border-radius: 20px; color: white; text-align: center; margin: 30px 0; box-shadow: 0 15px 35px rgba(240,147,251,0.4); }

.vix-ex { font-size: 3em; margin: 15px 0; }

.simple-math { background: #f8f9fa; padding: 25px; border-radius: 15px; border-left: 6px solid #3498db; margin: 25px 0; }

.simple-math code { background: #e9ecef; padding: 5px 10px; border-radius: 5px; font-size: 1.5em; font-weight: bold; color: #495057; }

.market-mind { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 30px; border-radius: 20px; text-align: center; margin: 30px 0; }

.conclusion { background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%); color: #2c3e50; padding: 40px; border-radius: 25px; text-align: center; font-size: 1.2em; }

@media (max-width: 768px) { .header h1 { font-size: 2em; } .price-tags { flex-direction: column; align-items: center; } .content { padding: 30px 20px; } }

? 옵션 = 선택권!

추석 선물! 인생은 옵션이다 ?