body {
    margin: 0;
    padding: 0;
}
main {
    margin: auto;
    max-width: 1000px;
    width:100%;
    background:#fff;
    text-align: center;
    margin-top: 100px;
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap:50px;
    border-radius: 20px;
}
h2 {
    color:#343232;
    font-size: 30px;
}

p {
    width:300px;
    height:50px;
    border:3px solid #8F7086;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}
button {
    width:200px;
    height:50px;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    font-size: 20px;
    background-color: #8F7086;
    transition: all 0.5s;
    color:#fff;
    font-weight: 600;
}
button:hover {
    background-color: #8F888D;
}
.flex-div {
    display:flex;
    justify-content: center;
    align-items: center;
    gap:30px;
}
