* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Bebas Neue", cursive;
  background-color: #f0f0f0;
}

.container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  min-height: 130vh;
  background-image: url("cp\ 2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px 20px 30px 20px;
}

.profile img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #222;
  object-fit: cover;
  margin-bottom: 12px;
}

.profile p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: cornsilk;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.4;
}

.profile a {
  display: inline-block;
}

.profile a img {
  cursor: pointer;
}

.profile a:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
}

.link a {
  text-decoration: none;
  color: #222;
  background-color: #eaeaea;
  border: 3px solid #222;
  padding: 12px;
  font-size: 20px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  max-width: 300px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.link a:hover {
  background-color: azure;
}

.footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  width: 100%;
}

.footer i {
  font-family: Cambria, serif;
  color: white;
  font-size: 18px;
  display: inline-block;
}

.copyright {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: blanchedalmond;
}

.copyright a {
  color: darksalmon;
  text-decoration: none;
  transition:
    color 0.3s,
    text-shadow 0.3s;
}

.copyright a:hover,
.copyright a:focus,
.copyright a:active {
  color: coral;
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px #ffffff;
}

/* RUNNING TEXT PROMO */
.global-running-text {
  width: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;

  margin-top: 20px;
  margin-bottom: 10px;
}

.running-track {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: runningText 19s linear infinite;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: #ffffff;
}

.running-track a {
  color: #00f7ff;
  font-weight: bold;
  text-decoration: none;
}

.running-track a:hover {
  text-decoration: underline;
}

@keyframes runningText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 480px) {
  .profile img {
    width: 120px;
    height: 120px;
  }

  .profile p {
    font-size: 16px;
  }

  .link a {
    font-size: 18px;
    padding: 10px;
  }

  .copyright {
    font-size: 12px;
    padding: 6px 12px;
  }
}
