@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");

body {
  margin: 0;
  background-color: #fdfbe0; /* cream background */
  font-family: "Roboto", "Courier New", Courier, monospace;
  color: #003300; /* dark green text */
  line-height: 1.3em;
}

header {
  background-color: #cfe8cf;
  border-bottom: 4px double #003300;
  padding: 10px;
  text-align: center;
}

.welcome {
  line-height: normal;
}

nav {
  background-color: #e2f0e2;
  border-top: 2px solid #003300;
  border-bottom: 2px solid #003300;
  padding: 8px;
  text-align: center;
}

nav a {
  margin: 0 12px;
  color: #002200;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
  color: #005500;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-size: 36px;
  text-decoration: underline;
  color: #002200;
}

.marquee {
  background: #e8ffd8;
  color: #005500;
  font-weight: bold;
  padding: 6px;
  border: 2px dashed #005500;
  margin-bottom: 20px;
  text-align: center;
  animation: blink 1s steps(1, start) infinite;
}

/* @keyframes blink {
  50% {
    visibility: hidden;
  }
} */

.tech-icons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 90px;
}

.tech-icon img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.tech-icon p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

.net img {
  transform: scale(0.6);
}

.azure img {
  transform: scale(0.6);
}

.html5 img {
  transform: scale(0.6);
}
.javascript img {
  transform: scale(0.6);
}

.react img {
  transform: scale(0.6);
}

footer {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
  margin-bottom: 2rem;
}
