@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Slab', serif;
}

body {
    padding: 60px;
    background-color: #f5f5f5;
    color: #222;
}

.container {
    width: 100%;
}

h1 {
    margin-bottom: 10px;
}

h3 {
    font-weight: 500;
    margin-bottom: 10px;
}

.gallery {
    margin: 10px 0;
    display: flex;
    width: 100%;
    height: 250px;
}

image {
    height: 100%;
}

h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

ul {
    list-style-position: outside;
    padding-left: 20px;
}

li {
    margin-left: 20px;
}

li>ul {
    padding-left: 20px;
}

.step {
    margin-bottom: 10px;
}

.stepTitle {
    font-weight: 600;
}

.step ol li {
    margin-bottom: 4px;
}