
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;
}

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;
}
/*End of CSS reset*/


.dotgothic16-regular {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.silkscreen-regular {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.silkscreen-bold {
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.twinkle-star-regular {
  font-family: "Twinkle Star", cursive;
  font-weight: 400;
  font-style: normal;
}

.indie-flower-regular {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
    background-image: linear-gradient(to left, rgb(255, 135, 191), rgb(226, 81, 255), rgb(159, 236, 255))
}

main {
    display: grid;
    grid-template-areas: 
        "header header header"
        "content1 content2 content3"
        "content4 content5 content6"
        "content7 content8 content9"
        "content10 content11 content12"
        "content13 content14 content15";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
}


form {
    padding: 20px;
    border-radius: 25px;
    border-style: dashed;
    border-width: 5px;
    border-color: rgb(151, 0, 181);
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    background-color: rgb(255, 255, 255);
}

article {
    background-color: black;
    padding: 100px;
    border-radius: 25px;
    padding-top: 200px;
    padding-bottom: 200px;
}

nav {
    background-color: #f2c0ff;
    font-size: 50px;
}

a:hover {
    color: rgb(222, 36, 255);
}

section {
    color: aliceblue;
    text-align: center;
}

input[required] {
    background-color: rgb(0, 255, 76);
}

input[type="submit"]:hover {
    cursor: pointer;
    background-color: rgb(0, 242, 255);
    color: blue;
}

img {
    background-color: #f2c0ff;
    border-radius: 80px;
    margin: 25px;
}

legend {
    text-align: center;
    background-color: white;
    border-radius: 25px;
    border-style: dashed;
    border-width: 5px;
    border-color: rgb(151, 0, 181);
    padding: 20px;
}

h2 {
    grid-area: header;
    text-align: center;
    font-size: 25px;
}

#search {
    padding: 15px;
    border-radius: 20px;
    border-color: rgb(151, 0, 181);
}

.head {
    grid-area: header;
    margin: 0;
    border-radius: 0;
}

.c1 {
    grid-area: content1;
}

.c2 {
    grid-area: content2;
}

.c3 {
    grid-area: content3;
}

.c4 {
    grid-area: content4;
}

.c5 {
    grid-area: content5;
}

.c6 {
    grid-area: content6;
}

.c7 {
    grid-area: content7;
}

.c8 {
    grid-area: content8;
}

.c9 {
    grid-area: content9;
}

.c10 {
    grid-area: content10;
}

.c11 {
    grid-area: content11;
}

.c12 {
    grid-area: content12;
}

.c13 {
    grid-area: content13;
}

.c14 {
    grid-area: content14;
}

.c15 {
    grid-area: content15;
}