/*
Theme Name: Brys Theme
Author: Your Name
Description: A glassy, modern theme for brys.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: brys
*/

/* Base styles */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #0d0d0d;
  color: #00ffe5;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
}
/* Frosted glass card styles */
.card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 900px;
  text-align: center; /* Center text inside cards */
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  padding: 1rem;
  z-index: 1000;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #00ffe5;
}

nav a {
  color: #00ffe5;
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #00b3cc;
}
.hero {
  margin-top: 3rem;
}

/* Center and style the profile image */
.profile-image {
  display: block;
  margin: 1rem auto 2rem auto; /* Adds space above and below the image */
  max-width: 100%;
  height: 324px;
  border-radius: 100%; /* Optional: makes it circular */
  width: 576px; /* Adjust size as needed */
  border: 3px solid #00ffe5; /* Optional: adds a cyan border */
}