*



{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: 'Daydream';
    src: url('fonts/DaydreamRegular.woff2') format('woff2'),
        url('fonts/DaydreamRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'VCR OSD Mono';
    src: url('fonts/VCROSDMono.woff2') format('woff2'),
        url('fonts/VCROSDMono.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
    font-family:'VCR OSD Mono' ;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  font-size: 20px;
}

.logo {
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

h2 {
 font-family:'Daydream' ;
 color: white;
}

header {
  text-align: center;
  background-color: #ff00bf;
  color: #fff;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 2.5rem;
}

.tagline {
  color: #ffffff;
}

/* NAVIGATION TABS */
nav {
  margin-top: 1rem;
}

.tabs {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tabs li {
  cursor: pointer;
  padding: 10px 20px;
  background: #991b79;
  color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}

.tabs li:hover,
.tabs li.active {
  background: #ff7ade;
  color: #ffffff;
}

/* TAB CONTENT */
.tab-content {
  display: none;
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

.tab-content.active {
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.about, .contact {
  text-align: center;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #222;
  color: #fff;
}

/* Existing CSS stays the same */

.tab-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}


.logo {
  max-width: 320px;
  display: block;
  margin: 0 auto 10px;
}

.about-container {
  text-align: center;
  max-width: 700px;
  margin: auto;
  
}

.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

