@font-face {
    font-family: CedarvilleCursive;
    src: url(/fonts/CedarvilleCursive-Regular.ttf) format('truetype'),
         url(/fonts/Cedarville-Cursive.woff2) format('woff');
}

@font-face {
    font-family: MagicalMysteryTour;
    src: url(/fonts/MagicalMysteryTour.ttf);
}

body {
    /* font-family: Cedarville Cursive, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    /* font-family: CedarvilleCursive; */
    font-family: MagicalMysteryTour, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5vw;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8;
}

header {
    background-color: #FFC0CB;
    text-align: center;
    padding: 20px;
    /* width: 40%; */
    margin: auto;
}

.responsive {
    width: 60%;
    height: auto;
}

header h1 {
    margin: 0;
    font-size: 5vw;
    color: #FFC0CB;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

header h1 a {
    margin: 0;
    color: hsl(288, 100%, 78%);
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

header p {
    margin: 10px 0;
    /* font-size: 3vw; */
    color: #f2c0ff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

section {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: auto;
    width: 50%;
    padding: 10px;
}

input[type=submit] {
    padding: 5px 15px;
    background: #FFC0CB;
    border: 0 none;
    cursor: pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1.5vw;
}

input[type=text]:focus {
    background-color: #FFC0CB;
}

input[type=text] {
    width: 80%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

#confetti {
	height: 100%;
	left: 0px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: -1;
    opacity: 0.50;
}

.container {
    position: relative;
    text-align: center;
    color: white;
}

.centre-image {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer {
    background-color: #FFC0CB;
    text-align: center;
    padding: 20px;
    /* width: 40%; */
    margin: auto;
}

hr {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: medium double #333;
    color: #333;
    text-align: center;
}
hr:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: white;
}