* {
    text-align: center;
    background-color: #ededeb;
}

.container {
    display: flex;
}

.step {
    width: 40%;
    margin: auto;
    margin-top: 20px;
    padding-bottom: 7px;
    border: 1px solid #9e8470;
    border-radius: 10px;
}

h1 {
    font-family: 'Raleway', sans-serif;
    color: #9e8470;
}

h2 {
    font-family: 'Pacifico', cursive;
    color: #3f2f26;
    font-size: 1.6rem;
}

button {
    font-family: 'Pacifico', sans-serif;
    font-size: 1.3rem;
    background-color: #d8cec2;
    color: #0b0201;
    padding: 15px;
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
    outline: none;
}

    button:hover {
        background-color: #9e8470;
        cursor: pointer;
    }

#newAnimal, #newCreation {
    width: 60%;
    margin: auto;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 5px;
}

p, label {
    font-family: 'Raleway', sans-serif;
    color: #0b0201;
}

.step2-radio {
    margin-top: 20px;
}

.step2-titles {
    margin-top: 50px;
    display: none;
    border-top: 1px dotted #9e8470;
    border-bottom: 1px dotted #9e8470;
}

#step2-howMany {
    font-weight: bold;
    margin-top: 40px;
}

#number-input {
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 20px;
    max-width: 30%;
    background-color: #fff;
    outline: none;
}