/* ===== ATOMIC CSS - MARIAN'S PORTFOLIO ===== */
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Palette - Professional Dark Theme */
  --primary: #0066cc;
  --secondary: #ff6b35;
  --accent: #ffd700;
  --dark: #0a0a0a;
  --darker: #000000;
  --light: #ffffff;
  --gray: #1a1a1a;
  --gray-light: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --bg-primary: #000000;
  --bg-secondary: #1a1a1a;
  --border-color: rgba(0, 102, 204, 0.2);
  
  /* Status Colors */
  --status-done: #00ff00;
  --status-in-progress: #ffd700;
  --status-not-finished: #ff6b35;
  --status-cancelled: #ff0000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004499 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
  --gradient-accent: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-bg: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 102, 204, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 102, 204, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 102, 204, 0.3);
  --shadow-glow: 0 0 20px rgba(0, 102, 204, 0.5);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Light Theme Variables */
[data-theme="light"] {
  --primary: #0099cc;
  --secondary: #ff4500;
  --accent: #ffb347;
  --dark: #ffffff;
  --darker: #f5f5f5;
  --light: #000000;
  --gray: #e0e0e0;
  --gray-light: #f0f0f0;
  --text-primary: #000000;
  --text-secondary: #333333;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --border-color: rgba(0, 153, 204, 0.2);
  
  --gradient-bg: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(0, 153, 204, 0.3);
}

/* Body & Background */
body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--gradient-bg);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  transition: var(--transition-normal);
}

/* Animated Background Particles */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.6;
}

.particle:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 4s; }
.particle:nth-child(6) { top: 90%; left: 30%; animation-delay: 5s; }
.particle:nth-child(7) { top: 30%; left: 60%; animation-delay: 6s; }
.particle:nth-child(8) { top: 70%; left: 40%; animation-delay: 7s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Header */
.header {
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.header-content {
  flex: 1;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  box-shadow: var(--shadow-glow);
}

.title {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.title-icon {
  animation: rocket 2s ease-in-out infinite;
}

.title-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes rocket {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes glow {
  0% { box-shadow: 0 0 10px var(--accent); }
  100% { box-shadow: 0 0 20px var(--accent), 0 0 30px var(--accent); }
}

.subtitle {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Theme Toggle - Hidden for dark mode only */
.theme-toggle {
  display: none;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  gap: 3rem;
}

/* About Section */
.about-section {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.about-section:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: justify;
}

.skills-container {
  margin-top: 2rem;
}

.skills-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition-normal);
  cursor: pointer;
}

.skill-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.skill-item i {
  font-size: 2rem;
  color: var(--primary);
}

.skill-item span {
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

/* Profile Card */
.profile-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
  transition: var(--transition-slow);
}

.profile-card:hover::before {
  left: 100%;
}

.profile-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.profile-image {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.profile-overlay {
  display: none;
}

.profile-image:hover .profile-overlay {
  opacity: 1;
}

.profile-image:hover img {
  transform: scale(1.1);
}

.profile-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.profile-info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.profile-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.profile-stats .stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent);
}

.profile-stats .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Projects Section */
.projects-section {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.projects-section:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.projects-header {
  margin-bottom: 2rem;
}

.projects-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.search-container {
  flex: 1;
  min-width: 250px;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  transition: var(--transition-normal);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.search-input::placeholder {
  color: var(--text-secondary);
}

.filter-container {
  min-width: 200px;
}

.filter-select {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: 'Rajdhani', sans-serif;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-normal);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230066cc' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

/* Projects Grid - 4 columns */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) and (min-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) and (min-width: 600px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
  transition: var(--transition-slow);
}

.project-card:hover::before {
  left: 100%;
}

.project-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.project-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-category {
  background: var(--gradient-primary);
  color: var(--light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.project-status.done {
  background: rgba(0, 255, 0, 0.2);
  color: var(--status-done);
  border: 1px solid var(--status-done);
}

.project-status.in-progress {
  background: rgba(255, 215, 0, 0.2);
  color: var(--status-in-progress);
  border: 1px solid var(--status-in-progress);
}

.project-status.not-finished {
  background: rgba(255, 107, 53, 0.2);
  color: var(--status-not-finished);
  border: 1px solid var(--status-not-finished);
}

.project-status.cancelled {
  background: rgba(255, 0, 0, 0.2);
  color: var(--status-cancelled);
  border: 1px solid var(--status-cancelled);
}

.project-lock {
  color: var(--primary);
  font-size: 1.2rem;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.project-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Project Progress */
.project-progress {
  margin-bottom: 1.5rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-primary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-color);
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 4px;
  transition: width 1s ease;
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.progress-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.project-actions {
  display: flex;
  gap: 0.5rem;
}

.project-btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.project-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

.project-btn.primary {
  background: var(--gradient-primary);
  color: var(--light);
  border: none;
}

.project-btn.primary:hover {
  background: var(--gradient-secondary);
}

.project-btn.locked {
  background: var(--gradient-secondary);
  color: var(--light);
  border: none;
  animation: pulse 4s ease-in-out infinite;
}

.project-btn.locked:hover {
  background: var(--gradient-accent);
  animation: none;
}

/* Project Preview */
.project-preview {
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.project-preview:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--gradient-dark);
  border-bottom: 1px solid var(--border-color);
}

.preview-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview-controls {
  display: flex;
  gap: 0.5rem;
}

.control-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: var(--primary);
  color: var(--dark);
  transform: scale(1.1);
}

.iframe-container {
  position: relative;
  height: 600px;
  background: var(--bg-secondary);
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: var(--light);
}

.iframe-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  background: var(--bg-secondary);
  opacity: 0.8;
}

.iframe-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Project Stats - Removed, replaced with Skills Section */

/* Footer */
.footer {
  margin-top: 3rem;
  padding: 2rem;
  text-align: center;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer p {
  color: var(--text-primary);
  font-size: 1rem;
}

.footer .fa-heart {
  color: #ff0000;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary);
  color: var(--dark);
  transform: scale(1.1) rotate(360deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .title {
    font-size: 2.5rem;
    flex-direction: column;
  }
  
  .main-content {
    padding: 1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .projects-controls {
    flex-direction: column;
  }
  
  .search-container,
  .filter-container {
    min-width: auto;
  }
  
  /* Project stats removed - replaced with skills section */
  
  .iframe-container {
    height: 400px;
  }
  
  .preview-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .project-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  /* Stat number removed - no longer used */
  
  .about-section {
    padding: 2rem 1rem;
  }
  
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-actions {
    flex-direction: column;
  }
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 102, 204, 0.3);
  border-radius: 50%;
  border-top-color: var(--primary);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-secondary);
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

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

.slide-in {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.slide-out {
  animation: slideOut 0.3s ease-out;
}

@keyframes slideOut {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

/* Skills Section - Removed */

/* Demo Section - Removed */

/* Video Section */
.video-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.video-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Responsive Video */
@media (max-width: 768px) {
  .video-container {
    padding: 0 1rem;
  }
  
  .video-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .video-wrapper iframe {
    height: 250px;
  }
}
