File size: 844 Bytes
e54f2f1 580a8c6 e54f2f1 580a8c6 e54f2f1 580a8c6 e54f2f1 580a8c6 e54f2f1 580a8c6 e54f2f1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #ff9a9e, #fad0c4);
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
width: 90%;
max-width: 500px;
padding: 20px;
text-align: center;
}
h1, h2 {
color: #444;
}
.step {
display: none;
}
.step.active {
display: block;
}
button {
background-color: #ff6f61;
border: none;
color: white;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin: 10px;
transition: background-color 0.3s;
}
button:hover {
background-color: #ff4a4a;
}
button:focus {
outline: none;
}
|