*/{
  padding: 0px;
  margin: 0px;
}
body{
  background-color: rgb(255, 221, 175);
}
/* cerceve ve yazı büyüklüğü kalınlığı verilmektedir  */
.stil{
  font-size: 20px;
  font-weight: bold;
  border: 2px solid ;
  border-radius: 12px;
  padding: 10px;
  margin: 5px;
  border-color: #AE2448;
}
/* baslık için kulanılmaktadır */
.size_color{
  color: red;
}
/* paragraf için verilmektedir  */
.size_color_p{
  color: rgb(0, 0, 0);
}

.container {
    width: 90%;
    margin: auto;
}

header {
    text-align: center;
    padding: 20px;
}

h1 {
    color: rgb(0, 0, 0);
}

.subtitle {
    color: #00ccff;
}

.content {
    display: flex;
    gap: 20px;
}

.text-area {
    flex: 2;
}

.image-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-area img {
    width: 100%;
    border-radius: 10px;
    padding: 35px;
}

h2 {
    color: rgb(255, 0, 0);
    border-bottom: 2px solid rgb(0, 0, 0);
    padding-bottom: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    border: 1px solid #000000;
    padding: 10px;
}

th {
    background: rgb(101, 97, 51);
    color: rgb(255, 255, 255);
}

tr:nth-child(even) {
    background: #e1ffb1;
}

tr:hover {
    background: #e1ffb1;
}

/* Bant Temel Stili */
.corner-ribbon {
  width: 200px;
  background: #a52a2a; /* Tasarımdaki kırmızımsı kahve tonu */
  color: #fff;
  text-align: center;
  line-height: 40px;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Köşeye Sabitleme */
  position: fixed;
  top: 25px;
  right: -50px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  
  /* Gölge ve Katman */
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
  
  /* Geçiş Efekti */
  transition: background 0.3s ease;
}

/* Üzerine gelince renk değişimi */
.corner-ribbon:hover {
  background: #800000;
  color: #f0e68c; /* Hafif parşömen sarısı yazı */
}