body {
  margin: 0;
  padding: 0;
  background-color: rgb(131, 131, 131);
  color: rgb(240, 240, 240);
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100vw;
  font-family: Verdana, Tahoma, sans-serif;
}

.container {
  width: 91%;
  max-width: 680px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-container {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

h1 {
  font-size: 26px;
  margin-bottom: -5px;
}

h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.last-updated {
  font-size: 15px;
  margin-bottom: 30px;
  color: #e6e6e6;
}

.device-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.device-card {
  background-color: rgb(39, 39, 39);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s cubic-bezier(.07, 1.41, .82, 1.41), border-color 0.2s ease;

}

.device-card img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.device-info .comment {
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
  font-style: italic;
}
.device-info .price {
  margin-top: 3px;
  font-size: 14px;
  color: #ccc;
  display: flex;
}

.device-info h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #ffffff;
}

.device-info p {
  margin: 0;
  font-size: 16px;
}

.amazon-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ff9900;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease, border 0.2s ease;
}

.amazon-link:hover {
  border: 0px solid rgb(255, 0, 242);
  background-color: #e68a00;
}

.device-card:hover {
  transition: cubic-bezier(.07, 1.41, .82, 1.41) 0.2s;
  transform: scale(1.02);
  border-color: rgb(255, 0, 242);
}