* {
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    font-weight: bold;
}
main {
    border: 2px solid #04AA6D;
    max-width: 500px;
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    margin: auto;
    width: calc(100% - 40px);
    margin-top: 50vh;
    transform: translateY(-50%);
    box-shadow: 0 0 20px 0px #04AA6D;
}
h1 {
    text-align: center;
}
section {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    align-items: center;
    box-shadow: 0 0 5px 0 #000;
}
section .title {
    font-size: 20px;
}
section .button {
    text-decoration: none;
    background: deeppink;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
