* {
    padding: 0;
    margin: 0;
    box-sizing: border-box}

body {
    background-image: url("https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwallpapercave.com%2Fwp%2FX5kBGw4.jpg&f=1&nofb=1");
    color: white;
}
section {
    min-height: 100vh;
    width: 100%;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.title {
    position: absolute;
    top: 50px;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}
.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    background-color: #946990;
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}
.container p {
    font-size: 2rem;
    font-weight: 300;
    line-height: 3rem;
    text-align: justify;
}
button {
    margin-top: 40px;
    width: fit-content;
    padding: 2rem;
    font-size: 2rem;
    background-color: #9296F0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-end;
}