/* 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;
}

/*
Clean, consistent professional design [v/]
Pages are readable [v/]
All pages, links, and images work [v/]
Create a logo [v/]
Create a Favicon [v/]
Use at least one web font []
Include their photos & videos [v/]
Additional photos must be copyright free (id. pexels.com) [v/]
Color scheme appropriate for the business [v/]
*/

body{
	font-size: 12px;
}
header{
    padding: 2px;
    border-radius: 5px;
    background-color:rgb(65, 65, 65);
    margin: 10px;
    color: whitesmoke;
    display: flex;
    justify-content: space-between;
	height: 80px;
}
img{
	width: 100%;
	border-radius: 5px;
}
.logo{
    width: 60px;
	margin: 2px;
	margin-top: 10px;
	margin-bottom: 10px;
}
h1{
	font-size: 20px;
	margin: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
}
h2{
	font-size: 15px;
	text-align: center;
}
h3{
	text-align: center;
}
.nav{
	font-size: 15px;
	margin: auto;
	padding: 3px;
	background-color: rgb(246, 72, 165);
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
	color: rgb(25, 25, 25);
	transition: transform 1s;
}
.nav:hover{
    transform: scale(1.05, 1.05);
}
footer{
	padding: 5px;
    border-radius: 5px;
    background-color:rgb(65, 65, 65);
    margin: 10px;
    color: whitesmoke;
    display: flex;
    justify-content: space-between;
	height: 60px;
}
.social img{
	width: 60px;
}
.socibl{
	font-size: 13px;
	text-align: center;
	margin-top: auto;
	margin-bottom: auto;
}
article{
	margin: 20px;
	background-color: whitesmoke;
	padding: 5px;
	border-radius: 5px;
}
.a{
	grid-area: a;
}
.b{
	grid-area: b;
}
.c{
	grid-area: c;
}
.d{
	grid-area: d;
}
.e{
	grid-area: e;
}
.f{
	grid-area: f;
}
.g{
	grid-area: g;
}
.h{
	grid-area: h;
}
#grida{
	display: grid;
    grid-template-areas:
    'a a a b b'
	'e e e c d';
    gap: 12px;
}
#abouth{
	font-size: 20px;
	color: rgb(246, 72, 165);
	grid-area: z;
}
#gridb{
	display: grid;
    grid-template-areas:
    'z z z'
	'a a b'
	'a a c';
    gap: 12px;
}
#event{
	grid-area: y;
	display: flex;
	flex-flow: row wrap;
	text-align: center;
}
#event p{
	width: 100%;
}
.corp{
	width: 25%
}
.wall{
	width: 12.5%;
}
#gridc{
	display: grid;
    grid-template-areas:
    'y a'
	'y b'
	'd c';
    gap: 12px;
}
#gridd{
	display: grid;
    grid-template-areas:
    'a b c'
	'a d e'
	'h f g';
    gap: 12px;
}
.x{
	grid-area: mx;
}
.y{
	grid-area: my;
}
.z{
	grid-area: mz;
}
#gridd div{
	display: grid;
	grid-template-areas:
    'mx mz'
	'my mz';
    gap: 2px;
}
#gride{
	display: grid;
    grid-template-areas:
    'a b'
	'x x'
	'c d';
    gap: 12px;
}
#cup{
	font-size: 20px;
	color: rgb(246, 72, 165);
}
.sweet{
	width: 10%;
	margin: 3.333%;
	text-align: center;
}
#menu{
	grid-area: x;
	display: flex;
	flex-flow: row wrap;
	margin-left: 10%;
	margin-right: 10%;
}
iframe{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	grid-area: v;
}
form{
	grid-area: w;
}
#gridf{
	display: grid;
    grid-template-areas:
    'w v';
    gap: 20px;
	padding:20px
}

@media screen and (max-width: 640px) {

body{
	font-size: 10px;
}
header{
	flex-flow: column wrap;
	margin: 5px;
}
article{
	margin: 10px;
}
h1{
	font-size: 16px;
	margin: 5px;
	margin-top: 32px;
	margin-bottom: 32px;
}
.logo{
	width: 50px;
	margin-top: 12.5px;
	margin-bottom: 12.5px;
}
h2{
	font-size: 12px;
}
.nav{
	font-size: 12px;
	margin: 3px;
}
footer{
	flex-flow: column wrap;
	margin: 5px;
}
.social{
	display: flex;
	flex-direction: column;
}
.social img{
	width: 30px;
}
.socibl{
	width: 80%
}
#grida{
    grid-template-areas:
    'a'
	'e'
	'd'
	'c'
	'b';
}
#abouth{
	font-size: 15px;
}
#gridb{
	grid-template-areas:
    'z z'
	'a a'
	'c b';
}
#gridc{
	grid-template-areas:
    'a'
	'b'
	'c'
	'd'
	'y';
}
#gridd{
    grid-template-areas:
    'a b'
	'a c'
	'a d'
	'g e'
	'h f';
    gap: 12px;
}
#menu{
	margin: 2%;
}
.sweet{
	width: 26.666%;
}
#gridf{
	grid-template-areas:
    'w'
	'v';
}
}