/* General */
body {
  font-family: calibri, sans-serif;
  background-color: #ffffff;
  color: #444444;
  margin: 0;
  padding: 0;
}

/* Headings */
h1 {
  color: #4A4A8A;
}

h2 {
  color: #6B6BB0;
  font-weight: bold;
}

h3 {
  color: #8A8AC8;
  font-weight: bold;
}

/* Navigation */
nav {
  background-color: #7B7FC4;
  padding: 14px 20px;
}

nav a {
  text-decoration: none;
  color: #F4F4FA;
  margin-right: 16px;
}

nav a:hover {
  color: #4A4A8A;
  text-decoration: underline;
}

/* Dropdown */
.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #6B6BB0;
  min-width: 160px;
  z-index: 1; 
  padding: 8px 0;
}

.dropdown-content a {
  display: block; 
  margin: 0;
  padding: 10px, 16px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Main content */
main {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Scratch embed */
.scratch-embed {
  margin: 24px 0;
}

.note {
  font-size: 0.9em;
  color: #4A4A8A;
}

/* List styling */
ul {
  line-height: 2;
  padding-left: 20px;
}

html {
  scroll-behaviour: smooth;
}

/* Hero styling */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 60px;
  background-color: #f5f4fb;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-pic {
  width: 200px;
  height: 200px;
  max-width: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #6b6aab;
  flex-shrink: 0;
}

.hero-text h1 {
  color: #4a4a8a;
  margin-bottom: 8px;
}

.hero-text h2 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 12px;
}

/* Kidea Logo Stuff */
.kidea-logo {
  display: block;
  margin: 30px auto;
  width: 350px;
  height: auto;
}

/* Excel Preview Images */
.excel-preview {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.excel-img {
  width: 48%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Download Button styles! */
.download-btn {
  display: inline-block;
  background-color: #7B7FC4;
  color: #ffffff !important;
  pudding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 16px;
}

.download-btn:hover {
  background-color: #4A4A8A;
}
