/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg,#FFCCCB,#ADD8E6,#FFCCCB);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Glass Container */
.glass-container {
  background: rgba(256, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  width: 90%;
  max-width: 1200px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
header h1 {
  font-size: 2rem;
  color: #e0f7fa;
}

/* Intro Section */
.intro {
  margin-bottom: 2rem;
}
.intro h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.intro p {
  font-size: 1rem;
}

/* Blog Posts */
.blog-posts {
  display: grid;
  gap: 1.5rem;

}
.post {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 1rem;
  transition: transform 0.3s ease;

}
.post:hover {
  transform: scale(1.02);
}
.post h3 {
  margin-bottom: 0.5rem;
}
.post p {
  margin-bottom: 1rem;

}


.headgui {
  color:white;
  text-decoration:none !important
  
}
.skillgui {
  text-align:left; }
  
  
.buttonguileft {
  background-color: transparent;
  border: 2px solid;
  padding: 10px 20px;
  border-radius: 20px;
  color: #AAFF00;
  cursor: pointer;
  float:left;
  transition: background 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  text-decoration:none !important
}
.buttonguileft:hover {
  color:#FFFFFF;
  background: linear-gradient(135deg,#FFCCCB,#FF0000,#FFCCCB);
}

.forceleft {
  float:left;}

.imggui {
  width:300px;
  height:200px;
  }


.footgui {
  color:#FFFFFF; }

.buttongui {
  display: inline-block;
  margin-left:10px;
  margin-bottom:5px;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid;
  padding: 10px 20px;
  border-radius: 30px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.buttongui:hover {
  color: #FFFFFF;
  background: #FF0000;
}






























/* Footer */
footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  float:right;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  color: #b2dfdb;
}