*, ::after, ::before {
    box-sizing: inherit;
}

html {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 100%;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Verdana", sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

p {
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #8325e5;
}

button, .button {
    display: inline-block;
    background-color: #FFFFFF;
    border: solid 2px #8325e5;
    padding: .5rem 1rem;
    line-height: 1.8;
    color: #8325e5;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

button:hover, button:focus, .button:hover, .button:focus{
    background-color: #8325e5;
    color: #FFFFFF;
}