@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&display=swap');

body {
  font-family: 'Uncial Antiqua', cursive;
  text-align: center;
  color: white;
  padding: 20px;

  background-color: #000;
  background-image: url('cyoot.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}


/* Navigation bar */
.nav {
  margin-bottom: 25px;
}
.nav-link {
  color: #333;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}
.nav-link:hover {
  text-decoration: underline;
}

/* Icon row */
.icon-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}
.icon-link img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.icon-link img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Title & welcome */
.site-title {
  font-size: 2.8rem;
  letter-spacing: 4px;
  margin: 10px 0;
}
.welcome {
  font-style: italic;
  margin-bottom: 25px;
}

/* News section */
.news h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
  letter-spacing: 1px;
}
.news-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  max-width: 400px;
  margin: 0 auto;
  padding: 15px 20px;
  text-align: left;
}
.news-box .date {
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}
.info-box {
  border: 2px solid black;
  padding: 10px;
  width: 300px;
  margin: 20px auto;
  background-color: #222;
  color: white;
}
