/* Genel Ayarlar */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  height: 100%;
  overflow: hidden;
}

/* Arka Plan Ayarları */
.background-container {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* İçerik */
.content {
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.triangle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.triangle {
  width: 100px;
  height: 100px;
  background: #FF4747;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 20px;
}

.exclamation {
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: bold;
  position: absolute;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #FF4747;
}

.countdown {
  margin: 20px 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.description {
  font-size: 1rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
