/* ===============================
   CSS Styling Project – Showcase
   ===============================
*/

/* Font and text adjustments */
.fancy-title {
  font-family: 'Courier New', monospace;
  color: aqua;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 2px 2px lightgray;
}

/* ID selector */
#styled-paragraph {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #F7DC6F;
  background-color: #82E0AA;
  padding: 10px;
  border-radius: 8px;
  animation: fadeIn 3s ease-in;
}

/* Class selector */
.styled-img {
  border: 5px solid #000;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.styled-img:hover {
  transform: scale(1.1);
}

/* Transform and transition effects*/
.transform-box {
  margin-top: 20px;
  width: 200px;
  height: 100px;
  background-color: #3498DB;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s, transform 0.5s;
}

.transform-box:hover {
  background-color: #FAD7A0;
  transform: rotate(5deg) scale(1.1);
}

/* Animation effects */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Container styling */
.styled-container {
  padding: 20px;
  background-image: linear-gradient(to right, #f0f8ff, #e6e6fa);
  border: 2px dashed #999;
  margin-top: 30px;
}