body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
}

section {
    padding: 80px;
    /* max-width: 800px; */
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.container {
    font-family: 'Nunito', sans-serif;
    width: 584px;
    height: 389px;
    border-radius: 15px;
    background: #F7F8FC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title{
    color: #000000;
    margin-bottom: 0;
}



.button{
    width: 214px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background:#28D3AB;
    color:white;
    text-decoration: none;
    margin-top: 20px;
}

.icon {
    width: 74px;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: #6774DF;
}

@media screen and (max-width: 600px) {
    header {
        font-size: 14px;
    }

    section {
        padding: 25px;
    }
}