
body {
    display: grid;
    border-width: 2px;
    background-color: #2c2c2c;
    background: linear-gradient(to bottom right, #2c2c2c, #1a1a1a); 
    width: 100vw;
    height:100vh;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.container {
    display: block;
    border-width: 2px;
    /* background-color: #2c2c2c; */
}

.item-1 {
    padding: 2px;
    width: 100vw;
}

.display {
    align-items: center;
    object-fit: contain;
    text-align: center;
    height: 480px;
}

.display img {
  width: 500px;          /* Makes image responsive to container */
  height: 600px;         /* Maintains aspect ratio */
  border-radius: 10px;   /* Rounded corners */
  margin: auto auto;    /* Centers image horizontally */

  box-shadow: 0 4px 16px orange;

}


.item-3 {
    display: block;
    text-align: center;
    /*align-items: center;*/
}

.round-orange-button {
  background-color: orange;
  /* color: white; */
  border: none;
  border-radius: 60px; /* Fully rounded */
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px #cc7a00;

    box-shadow:
    0 6px #cc7a00,   
    0 6px 5px orange;

  transition: all 0.3s ease;

}

.round-orange-button:hover {
  box-shadow:
    0 6px #cc7a00,
    0 10px 9px #cc7a00; /* intensified bottom glow on hover */
}

.round-orange-button:active {
  transform: translateY(4px);
  box-shadow: 0 2px #cc7a00;

}

footer {
  text-align: center;
}


/* mobile devices */
@media (max-width: 768px) {
  .display img {
    width: 300px;
    height: 350px;
  }
}
