* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  background-color: rgba(255, 228, 196, 0.397);
}

.container {
  border: 0.1ch solid rgba(190, 190, 190, 0.76);
  width: 60%;
  min-height: 100vh;
  margin: auto;
  background-color: rgba(242, 245, 248, 0.801);
}

/* HEADER */
.header img {
  width: 100%;
  border-radius: 5px;
}

/* HOME BAR */
.home {
  background-color: rgba(235, 225, 225, 0.747);
  margin: 10px;
  padding: 5px 20px;
}

.home a {
  color: #2e70a7;
  text-decoration: none;
  font-weight: bold;
}

/* TITLE */
.title-1 {
  margin: 10px;
}

.title-1 h2 {
  background-color: rgba(199, 199, 199, 0.651);
  padding-left: 10px;
  font-size: 1.4em;
  line-height: 1.7em;
  color: #a07b37;
  border-left: 4px #997d4a solid;
  animation: slideDown 0.8s ease;
}

.subtitle {
  background-color: rgba(199, 199, 199, 0.651);
  padding: 10px;
  font-size: 0.75em;
  border-left: 4px #997d4a solid;
  animation: slideDown 1s ease;
}

/* MOVING TEXT */
.moving-text {
  margin: 12px 0;
  overflow: hidden;
  background: rgba(46, 112, 167, 0.08);
  border-left: 4px solid #2e70a7;
  padding: 8px 0;
}

.moving-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerMove 18s linear infinite;
}

.moving-track span {
  margin-right: 50px;
  font-weight: bold;
  color: #2e70a7;
  font-size: 0.95em;
}

/* CONTENT */
.content {
  padding: 15px;
  font-size: 0.85em;
  line-height: 1.8em;
  color: #333;
  text-align: justify;
  animation: fadeUp 1.2s ease;
}

.content ul {
  margin: 10px 0 15px 20px;
}

.highlight {
  color: #2e70a7;
  font-weight: bold;
}

/* IMAGE */
.imgcm {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.imgcm img {
  width: 40%;
  border-radius: 15px;
  border: 1px solid #999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  animation: floatImage 4s ease-in-out infinite;
}

.imgcm img:hover {
  transform: scale(1.08);
}

/* FOOTER */
.bottom {
  background-color: #f0f0f0d3;
  text-align: center;
  padding: 15px;
  font-size: smaller;
}

.bottom a {
  color: rgb(211, 149, 55);
  text-decoration: none;
  font-size: 0.9em;
}

.v1 {
  border-left: 3px solid rgba(204, 202, 202, 0.836);
  height: 25px;
  margin: 0 10px;
}

.bottom p {
  margin-top: 10px;
  font-size: 0.8em;
}

hr {
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .container { width: 95%; }
  .imgcm img { width: 80%; }
}

/* ANIMATIONS */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
