body {
    margin: 0;
}
.header-wrapper {
    height: 150px;
    background-color: lightblue;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-wrapper h1 {
    font-size: 3rem;
    text-align: center;
    color: #2e2e63;
}
.main-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.main-wrapper > .item-wrappers {
    margin: 10px;
    width: 300px;
    height: 400px;
    border: 1px solid #2e2e63;
    border-radius: 5px;
    text-align: center;
}

.main-wrapper > .item-wrappers img {
    width: 100%;
    border-radius: 5px;
}
.main-wrapper > .item-wrappers > .result {
    margin: 10px 23px;
    border: 2px solid black;
    border-radius: 3px;
    height: 50px;
    width: 250px;
    background-color: #ffd1c0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-wrapper > .item-wrappers > .result p {
    margin: 0;
}

.main-wrapper > .item-wrappers button {
    background-color: #ff7f50;
}

.main-wrapper > .item-wrappers .dos {
    width: 75px;
}