* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f6f6f6;
  font-family: 'Courier New', Courier, monospace;
}

.container {
  text-align: center;
}

.responsive-image {
  max-width: 100%;
  height: auto;
}

.links {
  margin-top: 20px;
}

.links a {
  display: inline-block;
  margin: 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.links a:hover {
  color: #007bff;
}

img {
  border-radius: 25%;
  width: 30%;
}

footer {
  margin-top: 50px;
  font-size: 10px;
}
