/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and background */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;  /* Darker background */
    color: #f0b3d9;  /* Light pinkish tone for text */
    text-align: center;
    padding: 20px;
}

/* Container for the content */
.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Style for each step in the tease */
.tease-step {
    display: block;
    margin: 20px 0;
    background-color: #0a0a0a;  /* Dark gray for steps */
    padding: 20px;
    border-radius: 8px;
	  border: 0.5px solid #f06292;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Subtle shadow */
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #f06292;  /* Deep pink for section headers */
}

h3, h4 {
    font-size: 1.2em;
    margin-top: 15px;
    color: #c0a9d6;  /* Soft lavender color for smaller headers */
}

ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

ul li {
    margin: 10px 0;
    color: #e4b3d0;  /* Light pink for list items */
}

/* Images styling */
.step-image {
    width: 600px;
	  height: 400px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);  /* Subtle shadow for images */
}

/* Buttons */
button {
    background-color: #f06292;  /* Deep pink for buttons */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e91e63;  /* Darker pink for hover effect */
}

/* Adjustments for mobile view */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    button {
        font-size: 1em;
    }

    h2 {
        font-size: 1.3em;
    }

    h3, h4 {
        font-size: 1.1em;
    }
}
