/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


body {
    background-image: url(bg.gif);
}



.center {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#img {
    width: 25%;

    margin: 5%;
    margin-top: 2%;

    border: 20px solid #f899d1;
    border-radius: 40px;
}

button {
    margin: 5%;
    background-color: #f899d1;
    color: white;
    border: #f899d1;
    border-radius: 40px;
    padding: 1%;
    font-family: bubbly;
    font-size: 350%;
    margin-top: -1%;
}

#banner1 {
    display: block;
    position: absolute;

    width: 20%;
    height: 230%;

    background-color: #fccce8;
    color: #fccce8;

    margin: -1%;
}

#banner2 {
    display: block;
    position: absolute;
    right: 0;

    width: 20%;
    height: 230%;

    background-color: #fccce8;
    color: #fccce8;

    margin: -1%;
    margin-right: 0%;
}

#flower1 {
    width: 10%;
    position: absolute;
    margin: 1%;
    transition: 0.5s;
}
#flower1:hover {
    transform: scale(1.2) rotate(25deg);
}

#flower2 {
    width: 10%;
    position: absolute;
    right: 0;
    margin: 1%;
    transition: 0.5s;
}
#flower2:hover {
    transform: scale(1.2) rotate(-25deg);
}

#title {
    margin: 2%;
    color: #fccce8;
    font-family: bubbly;
    font-size: 800%;
}

#quote {
    margin: 5%;
    background-color: #f899d1;
    color: white;
    border: #f899d1;
    border-radius: 40px;
    padding: 1%;
    font-family: bubbly;
    font-size: 150%;
    width: 40%;
    text-align: center;
    margin-top: -1%;
}

@font-face {
    font-family: bubbly;
    src: url("Playful\ Monalisa\ Sans\ Demo.otf");
}