:root {
    --dw-primaryColor: rgb(173, 153, 216);
    --dw-secondaryColor: rgb(104, 36, 115);
    --formFocusShadowColor: rgba(244, 119, 255, 0.5);
    --formFocusColor: var(--dw-secondaryColor);
}

main>.container {
    padding: 60px 15px 0;
    margin-bottom: 5rem;
}

.sticky-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

body {
    font-family: 'Dancing Script';
}

.form-control:focus {
    border-color: var(--formFocusColor);
    box-shadow: 0 0 0 0.25rem var(--formFocusShadowColor);
}

.title {
    font-family: 'Ephesis';
}

.customHeader {
    background-repeat: no-repeat;
    background-position: fixed;
    background-size: cover;
    background-color: #AD99D8;
    min-height: 400px;
    background-image: radial-gradient(circle 827px at 47.3% 48%, rgba(244, 119, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 90%);
}

/* Show big images on bigger screens */
@media only screen and (min-width: 992px) {
    .header {
        background-image: url("/img/DanielleWestLarge.png");
        background-repeat: no-repeat;
        min-height: 400px;
        background-size: cover;
        margin-top: 3rem;
    }
}

/* show small image on smaller screens */
@media only screen and (min-width: 576px) and (max-width: 991px) {
    .header {
        background-image: url("/img/DanielleWestSmall.png");
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 3rem;
    }
}