h1 {
    text-align: center;
    font-family: "Quicksand", sans-serif;
    color: #ff4d6d;
    margin-top: 50px;
    font-size: 50px;
}

h1:hover {
    color: #c9184a;
    transition: color 0.3s;
    transform: scale(1.05);
    transition: transform 0.3s;
} 

body {
    background-color: #f0f8ff;
    font-family: "Quicksand", sans-serif;
    text-align: center;
    padding: 20px;
    color: #333;
    font-size: 30px;
}

label {
    font-family: "Quicksand", sans-serif;
    text-align: center;
    padding: 20px;
    color: #333;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

button {
    background-color: #ff4d6d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    font-family: "Quicksand", sans-serif;
}

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

input[type="date"] {
    padding: 10px;
    font-size: 20px;
    border: 2px solid #ff4d6d;
    border-radius: 5px;
    font-family: "Quicksand", sans-serif;
    background-color: #fff0f5;
    color: #333;
}

input[type="date"]:focus {
  outline: none;
  border-color: #ff4d6d;
  box-shadow: 0 0 5px #ff4d6d;
}

img {
    width: 350px;
    margin-top: 50px;
}

img:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

::selection {
    background-color: #ff4d6d;
    color: #fff0f5;
}

.input-error {
    border: 2px solid #ff4d6d;
    animation: shake 0.2s ease-in-out 2;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

.cake {
    width: 300px;
    max-width: 90%;
    display: block;
    margin: 20px auto;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    h3, label {
        font-size: 1rem;
    }

    .cake {
        width: 200px;
    }
}