@import url('https://use.typekit.net/ptg6trz.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

* {box-sizing: border-box;}

:root {
    --text-color: #0F2248;
    --bg-color: #F0F1F7;
    --bg-fade-1: #e684ae;
    --bg-fade-2: #79cbca;
    --bg-fade-3: #77a1d3;
}

body {
    margin: 0;
    text-align: center;
    color: var(--text-color);
    font-family: josefin-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.a {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: var(--bg-fade-3);
    background: -webkit-linear-gradient(to right, var(--bg-fade-1), var(--bg-fade-2), var(--bg-fade-3));
    background: linear-gradient(to right, var(--bg-fade-1), var(--bg-fade-2), var(--bg-fade-3));
    animation: bgfade 15s ease infinite;
    background-size: 400%;
}

@keyframes bgfade {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

header {
    background: var(--bg-color);
    overflow: auto;
    margin: 1rem;
    padding: 1rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 2px;
    color: var(--text-color);
    mix-blend-mode: lighten;
    background-color: #fff;
}

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

h1 {
    font-family: lust-script-display, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 8rem;
    margin: 0
}

li {
    text-transform: uppercase;
    font-size: 1.325rem;
    line-height: 1.2;
}

p {
	line-height: 1.6;
	text-transform: uppercase;
	margin: 0;
}

hr {
    width: 25%;
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: medium double #333;
    color: #333;
    text-align: center;
    min-width: 220px;
}
hr:after {
    font-family: 'Font Awesome 6 Free';
    content: "\f6cf";
    font-weight: 600;
    display: inline-block;
    position: relative;
    top: -0.8rem;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: white;
}

@media screen and (max-width: 720px) {
    h1 {
        font-size: 4rem;
        line-height: 1;
        margin-bottom: 1rem;
    }
    li {
        font-size: 1rem;
    }
}
