body {
    background-color: #ffffff;
    font-family:sans-serif;
    font-size: 16px;
    letter-spacing: .02em;
    width: 100vw;
    height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 600px;
    height: 100%;
    margin: 0 auto;
}
.wrapper img {
    width: 100%;
    height: auto;
    margin: -6em auto 3em;
}
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    width: 100%;
    transition: 500ms;
}
.button a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 1.3em 2em;
    text-decoration: none;
}
.button.primary {
    background-color: #f193bd;
    color: #412247;
    border: 1px solid #f193bd;
}
.button.primary:hover {
    background-color: #412247;
    color: #f193bd;
    border: 1px solid #412247;
}
.button.secondary {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    margin-bottom: 1em;
}
.button.secondary:hover {
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #000000;
}