<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset &amp; layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
}

/* Background */
body {
  background-image: url('background-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Info Panel at top */
.info-panel {
  border-radius: 10px;
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto 1rem auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  text-align: left;
}

/* Blog Section */
.blog-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.blogbox {
  width: 100%;
  max-width: 1000px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border-radius: 10px;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-left,
.blog-right {
  flex: 1 1 300px;
}

.blog-divider {
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* About Me Section */
.about-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.aboutmebox {
  width: 60%;
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: left;
  position: relative;
  border-radius: 10px;
}

.name {
  font-weight: bold;
  font-size: 2.5rem;
}

.tagline {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #ccc;
}

.whatisaboutme {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.aboutmetext {
  font-size: 1.1rem;
  line-height: 1.6;
}

.corner-cat,
.corner-flag {
  position: absolute;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  border: 2px solid white;
}

.corner-cat {
  top: -20px;
  right: -20px;
}

.corner-flag {
  bottom: -20px;
  right: -20px;
}

/* Dropdowns */
.dropdown summary {
  cursor: pointer;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.dropdown p {
  margin-left: 1rem;
}
</pre></body></html>