.page {
    display: flex;
    text-align: justify;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(-45deg, #1f1f27, #1f1f27, #103772, #315789);
    min-height: fit-content;
    padding: 3em;
    border-radius: 1em;
}
h4{
    margin-bottom: .5em;
    text-transform: uppercase;
}
p {
    font-weight: 500;
}
.wrapper a {
    font-size: 1.2em;
    font-weight: 700;
}

@media screen and (max-width:724px) {
    .wrapper{
        padding: 1em;
    }
}