body {
  margin: 0;
  height: 20vh;
  font-family: Amiri;
  background: #fde7e7;
 
}

body {
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* chat gpt */
.main {
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
}

/* Title */
.title {
  font-size: 60px;
  margin-bottom: 10px;
}

/* Image */
.photo-box img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 60px;
   display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
   cursor: pointer;
}
.photo-box img:hover {
  background: black;
  color: white;
}
/* Click boxes */
.box-container {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.box {
  border: 2px solid black;
  padding: 30px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: black;
  display: inline-block;
}

.box:hover {
  cursor: pointer;
}

.buy-btn {
   font-family: Amiri;
    padding: 12px 25px;
    font-size: 16px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.buy-btn:hover {
    background-color: red;
    transform: scale(1.1);
}

/* chat gpt  */

/* Red corners */
.corner {
  position: fixed;
  width: 100px;
  height: 100px;
  background: red;
}

.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; }
.bottom-left { bottom: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; }
