:root {
    --black-purple: #241630;
    --dark-blue-purple: #180740;
    --purple: #4815c0;
    --light-purple: #8255ec;
    --white-purple: #beb0d8;
    font-family: Helvetica, Arial, sans-serif;
    height: 100vh;
    text-align: center;
}

h1, h2, h3, h4, p {
    color: var(--white-purple);
}

h1 {
    font-size: 25vh;
    margin: 0;
}

h2 {
    font-size: x-large;
}

p {
    font-size: x-small;
}

body {
    background-color: var(--black-purple);
    min-height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.vertical-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn {
    background: #552eb0;
    background-image: -webkit-linear-gradient(top, #552eb0, #6d4392);
    background-image: -moz-linear-gradient(top, #552eb0, #6d4392);
    background-image: -ms-linear-gradient(top, #552eb0, #6d4392);
    background-image: -o-linear-gradient(top, #552eb0, #6d4392);
    background-image: linear-gradient(to bottom, #552eb0, #6d4392);
    -webkit-border-radius: 32;
    -moz-border-radius: 32;
    border-radius: 32px;
    text-shadow: 2px 2px 3px #734ad3;
    -webkit-box-shadow: 0px 0px 30px #5029ac;
    -moz-box-shadow: 0px 0px 30px #5029ac;
    box-shadow: 0px 0px 30px #5029ac;
    font-family: Courier New;
    color: #ab98cc;
    font-size: 32px;
    padding: 40px;
    border: solid #422787 4px;
    text-decoration: none;
}
  
.btn:hover {
    background: #7e4dab;
    background-image: -webkit-linear-gradient(top, #7e4dab, #5f34c2);
    background-image: -moz-linear-gradient(top, #7e4dab, #5f34c2);
    background-image: -ms-linear-gradient(top, #7e4dab, #5f34c2);
    background-image: -o-linear-gradient(top, #7e4dab, #5f34c2);
    background-image: linear-gradient(to bottom, #7e4dab, #5f34c2);
    text-decoration: none;
}