body { 
    text-align: center;
    font-family: 'Lato', sans-serif;
    color: #0c0614;
    font-size: 1em;
    background-color: whitesmoke;
}

h1 { 
    font-size: 3em;
    font-family: 'Vollkorn', serif;
}

h2 { 
    font-size: 2em;
}

h3 { 
    font-weight: 400;
}

a, a:active, a:link { 
    display: inline-block;
    width: 200px;
    border-radius: 10px 100px / 120px;
    line-height: 2em;
    text-decoration: none;
    color: #3c1969;
    background-color: white
}

a:hover { 
    color: white;
    background-color: #3c1969;
    background-image: 
        linear-gradient(
            to right,
            #3c1969,
            #0c0614
        );
    
}

hr.fancy { 
    color: #3c1969;
    line-height: 20px;
    width: 50%;
}

hr.fancy {
    position: relative;
    width: 100%;
    height: 50px;
    overflow: hidden;
    margin: 0px auto;
    border: 0;
}

hr.fancy:before {
    content: '';
    width: 90%;
    height: 30px;
    left: 5%;
    position: absolute;
    z-index: 50;
    border-radius: 0 0 100% 100% / 0 0 200% 200%;
    
    box-shadow: 0px 0px 10px 5px #3c1969;
}

hr.fancy:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    z-index: 66;
    border-bottom-left-radius: 2000px 60px;
    border-bottom-right-radius: 2000px 60px;
    background: whitesmoke;
} 

.everything { 
    margin: 10%
}