body {
    font-family: Arial, sans-serif;
    background-image: url(background.jpg);
    background-size: 250px;
    margin: 0;
    padding: 0;
}

.wizard {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff75;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.step {
    display: none;
}

.step.active {
    display: block;
}

h2 {
    font-size: 1.5em;
    margin-top: -5px;
    margin-bottom: 20px;
    text-align: center;
    background: #ffffffbd;
    padding: 16px;
}

h5 {
    font-size: 1em;
    margin-top: -48px;
    margin-bottom: 20px;
    text-align: center;
    background: #ffffffbd;
    padding: 16px;
    font-style: italic;
    color: darkslategray;
}

.options label {
    display: block;
    margin: 10px 0;
    cursor: pointer;
	position: relative;
}

input[type="text"] {
    background: #ffffffcc;
    position: absolute;
    bottom: 20px;
    left: 0px;
    right: 0px;
    border: none;
    text-align: center;
    padding: 10px;
}

label span {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    padding: 10px;
    background: #0000007a;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: ghostwhite;
}

input[type="radio"], input[type="checkbox"] {
    display: none;
}

input[type="radio"] + img, input[type="checkbox"] + img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

input[type="radio"]:checked + img, input[type="checkbox"]:checked + img {
    transform: scale(0.95);
    border: 12px solid #1c9939;
    margin-left: -12px;
    margin-top: -12px;
}

input[type="checkbox"] {
    display: none;
}

button {
    padding: 10px 20px;
    background-color: #4cafa5;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #4cafa5;
}

#weight
