/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

   html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #c383ce;
    text-shadow: none;
}

::selection {
    background: #c383ce;
    text-shadow: none;
}


/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

img,
svg {
    vertical-align: middle;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

* {
    box-sizing: border-box;
}
body, html {
    min-height: 100vh;
}
body {
    padding: 2rem;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    background: rgb(151,46,160);
    background: -moz-linear-gradient(top, rgba(151,46,160,1) 0%, rgba(126,35,142,1) 85%);
    background: -webkit-linear-gradient(top, rgba(151,46,160,1) 0%,rgba(126,35,142,1) 85%);
    background: linear-gradient(to bottom, rgba(151,46,160,1) 0%,rgba(126,35,142,1) 85%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#972ea0', endColorstr='#7e238e',GradientType=0 );
}
p {
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.logo {
    max-width: 300px;
    height: auto;
}
.divider {
    display: block;
    height: 2px;
    width: 300px;
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
    background-color: #c383ce;
}

.ff-heading {
    font-family: 'Mina', sans-serif;
    letter-spacing: .1rem;
}
.mx-2 {
    display: inline-block;
    margin-left: .5rem;
    margin-right: .5rem;
}
.mb-8 {
    margin-bottom: 3rem;
}
.mb-0 {
    margin-bottom: 0;
}
.text-center {
    text-align: center;
}
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.justify-content-center {
    justify-content: center;
}
.color-primary-muted {
    color: #c383ce;
}
.h3 {
    font-size: 1.4rem;
}
a, a:hover, a:visited, a:focus, a:active {
    color: #fff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}



.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}
