/* icecream.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Comic Sans MS', cursive;
  background: linear-gradient(to bottom, #cceeff, #ffffff);
  text-align: center;
  color: #4b2e2e;
}

.icecream-land {
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  color: #ff69b4;
  margin-bottom: 2rem;
}

.cone-container {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.scoop {
  width: 120px;
  height: 120px;
  background-color: pink;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: background-color 0.5s ease;
}

.cone {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 100px solid #d2a679;
  margin: 0 auto;
}

button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background-color: #ffccff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #ff99cc;
}

.flavor-label {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #8b0000;
}
