@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:wght@400;700;800&display=swap');

:root {
    --font_fam: 'Wix Madefor Text', sans-serif;
}

html, body {
    margin: 0px;
    padding: 0px;
    font-family: var(--font_fam);
    background: #130a62;
    color: white;
    min-height: 100vh;
}

section {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

section::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0.65;
}

section .inner {
    text-align: center;
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 800px;
    padding: 50px 0px;
}

h1 {
    font-weight: normal;
    color: white;
    font-size: 20px;
    line-height: 32px;
    font-family: var(--font_fam);
    font-weight: normal;
}

p {
    font-family: var(--font_fam);
    font-weight: normal;
    font-size: 20px;
    line-height: 1.8em;
    color: white;
}

p.bigger {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}

img.logo {
    width: 90%;
    max-width: 400px;
}

hr {
    display: block;
    position: relative;
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: url(/public/images/hr-pink.png);
    opacity: 0.5;
}

a.download {
    position: relative;
    display: block;
    width: 60%;
    max-width: 400px;
    margin: 10px auto 0;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);

    transition: transform 0.2s ease-in-out;
}

a.download:hover {
    transform: scale(1.03) rotate(-2deg);
}

a.download img {
    display: block;
    width: 100%;
}

.blush {
    position: absolute;
    right: 0;
    top: 0;
    width: 48vw;
    height: 48vw;
    background-repeat: no-repeat;
    background-position: top -5vw right -15vw;
    background-size: 100%;
    background-image: url(/public/images/partials/peach-blush.png);
    transform: rotate(0deg) translate(2vw, 0);
}

.rose {
    position: absolute;
    right: 0;
    top: 0;
    width: 16vw;
    height: 16vw;
    background-repeat: no-repeat;
    background-position: top -1vw right -1vw;
    background-size: 100%;
    background-image: url(/public/images/partials/rose.png);
    transform: rotate(-4deg) translate(2vw, 0);
    opacity: 0.8;
}

.clear  {
    clear: both;
}

@media all and (max-width: 600px) and (min-width: 0px) {
    h1, p {
        font-size: 4vw;
    }

    p.bigger {
        font-size: 6vw;
    }
}