body {
  margin: 0;
  height: 100vh;
  font-family: Amiri;
  background: #f2f2f2;
 
}
body {
    animation: fadeIn 1.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} 
/* chat gpt */
.main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
}

/* Title */
.title {
  font-size: 60px;
  margin-bottom: 20px;
}



/* Click boxes */
.box-container {
  display: flex;
  gap: 360px;
}
/* Image */
.photo-box img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
} 

.buy-btn {
    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);
}

.btn {
  font-family:Amiri;
    padding: 12px 25px;
    font-size: 30px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: red;
    transform: scale(1.1);
}
/* Chat gpt*/
/* Red corners */
.corner {
  position: fixed;
  width: 40px;
  height: 40px;
  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; }

