body{
    background-color: #3399FF;
    color: #fff;
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    font-size: 16px;
}
.wrapper{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
}
.innerWrapper{
    width: 85vw;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 50px;
}
.innerWrapper div{
    margin: 2rem 0;
}
.title{
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
    text-align: center;
    width: 100%;
}
.imgWrapper{
    background-color: #EC7F32;
    width: 85vw;
}
.imgWrapper img{
    width: 85vw;
}
.button{
    display: block;
    width: 80vw;
    padding: 30px 50px;
    background-color: #fff;
    font-size: 2rem;
    text-align: center;
    color: #000;
    transition: 200ms;
    margin: 10px;
    text-decoration: none;
    cursor: pointer;
}
.button:hover{
    background-color: lightgray;
}
.button.delete{
    color: red;
}