@font-face {
  font-family: "font1";
  src: url("font/SairaStencil-VariableFont_wdth,wght.ttf") format("truetype");
}

body {
    margin: 0; 
    background-color: #FFAEC9;
    display: flex;
    justify-content: center; 
    align-items: center;      
    overflow: hidden;
    height: 100vh; 
}

.container {
    background-color: #343F3F;
    width: 90%;
    height: 85%;
    border-radius: 10px; 
    position: absolute; 
	bottom: 0;
	display: flex;
    box-shadow: 0 10px 50px #bd406e; 
}

.sol {
     flex: 2;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
    padding-top: 20px; 
}

.sol a {
    display: flex;
    justify-content: center;
	text-decoration: none;
}

.sag {
	
    flex: 7;
	align-content: center;
}

.gltext{
	background-color: #FFAEC9;
    color: #343F3F;

    padding: 20px;
    border-radius: 10px;

    width: 90%;
    height: 80%;

    overflow-y: auto;
}

.gltext::-webkit-scrollbar {
    width: 10px; 
}

.gltext::-webkit-scrollbar-track {
    background: transparent; 
}

.gltext::-webkit-scrollbar-thumb {
    background: #FF5694;
    border-radius: 10px;
}

.gltext::-webkit-scrollbar-thumb:hover {
    background: #ff2f7d; 
	transition: 0.7s;
}

.post-card{
	border-radius: 15px;
	 overflow: hidden;
	 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.post-card:hover{
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
}

.menuBtn { 
	width: 15vw; 
	height: 15vh; 
	border: none; 
	border-radius: 8px; 
	background-color: #FF5694; 
	color: white; 
	cursor: pointer; 
	font-size: clamp(12px, 1.2vw, 18px);
}

.menuBtn:hover{
	background-color: #E0195B;
	color: #ccc;
	transition: 0.5s;
}

.navbar {
	top: 0;
	position: absolute;
	background: #636e6e;
	height: 10vh;
	width: 80%;
	box-shadow: 0 5px 25px #bd406e80;
	border-radius: 10px;
	display: flex;
    justify-content: center;  
    align-items: center;      
    overflow: hidden; 
	gap: 10 px;
}

.logo-gif {
  width: 400px;   /* küçült büyüt buradan */
  height: auto;
}

.logo-gif.left {
  transform: scaleX(-1);
}

.logo {
    font-size: 2rem;
	font-family: "font1";
	align-content: center;
    color: #FF5694;
}

.posts {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 60px;
  justify-content: center;   
  align-content: center;    
  height: 100%;
}

.github-btn {
  width: 80%; 
  height: 10%;
  padding: 18px 25px;

  display: flex;
 justify-content: center;
  align-items: center;

  background-color: #FF5694;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: clamp(30px, 1.2vw, 18px);
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}


.github-btn:hover {
  background-color: #E0195B;
  transform: scale(1.03);
  transition: 0.3s;
}

.about-top {
  margin-left: 10px;
  text-align: left;
  margin-bottom: 30px; 
}

.about-top img {
  width: 120px; 
  border-radius: 10px;
  margin-bottom: 10px;
}

.about-top h2 {
  font-family: "font1";
  font-size: 25px;
  color: #ffffff;
  margin-bottom:0;
}

.about-top p {
  margin: 0;
  line-height: 1.5;
  font-size: 22px;
}

.about-top img {
  width: 500px;      /* BURAYI büyüt */
  height: auto;
  display: block;
}