@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&family=Rubik:wght@300&display=swap');

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, 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;
}

/*Header*/

.header1{
    position: fixed;
    margin: 0;
    margin-bottom: 50vh;
}

.header{
    text-align: center;
    font-size: 3.25vw;
    background-color: #b4a6b5;
    font-family: 'Amatic SC', cursive;
    margin: 0;
    font-weight: bold;
}

.menu{
    height: 8vh;
    width: 100vw;
    font-family: 'Rubik', sans-serif;
    background-color: #c1b6c2;
    margin: 0;
}

.menu ul{
    width: 100vw;
    display: flex;
    justify-content: space-evenly;
    height: 8vh;
    align-items: center;
}

.menu ul a{
    color: #fcecea;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    font-size: 1.5vw;
}

.menu ul a:hover{
    color: #fad3d1;
}

/*Body*/

body {
    background: url(https://wallpapercave.com/wp/wp4766529.jpg);
    background-size: 100%;
    font-family: 'Rubik', sans-serif;
    background-repeat: repeat;
    background-attachment: fixed;
    position: absolute ;
}

em {
	color: #232027;
}

.wrapper {
	width: 40%;
	margin: 40px auto;
    padding-top: 18vh;
}

div.gallery {
	margin-top: 30px;
}

div.gallery ul {
	list-style-type: none;
	margin-left: 35px;
}

/* animation */
div.gallery ul li, div.gallery li img {
	-webkit-transition: all 0.1s ease-in-out;
  	-moz-transition: all 0.1s ease-in-out;
  	-o-transition: all 0.1s ease-in-out;
  	transition: all 0.1s ease-in-out;
}

div.gallery ul li {
	position: relative;
	float: left;
	width: 130px;
	height: 130px;
	margin: 5px;
	padding: 5px;
	z-index: 0;
}

/* Make sure z-index is higher on hover */
/* Ensure that hover image overlapped the others */
div.gallery ul li:hover {
	z-index: 5;
}

/* Image is position nicely under li */
div.gallery ul li img {
	position: absolute;
	left: 0;
	top: 0;
	border: 1px solid #b5a6b5;
    border-radius: 50%;
	padding: 5px;
	width: 135px;
	height: 135px;
	background: #b5a6b5;
}

div.gallery ul li img:hover {
	width: 200px;
	height: 200px;
	margin-top: -130px;
	margin-left: -130px;
	top: 65%;
	left: 65%;
}

p.attribution {
	font-family: 'Consolas';
	color: #000;
	clear: both;
	text-align: center;
	line-height: 25px;
	padding-top: 30px;
}

p.attribution a {
	color: #4c8d7c;
}

/* Responsive hack */
@media only screen and (min-width: 499px) and (max-width: 1212px) {
	.wrapper {
		width: 500px;
	}
}

@media only screen and (max-width: 498px) {
	.wrapper {
		width: 300px;
	}

	div.gallery ul {
		list-style-type: none;
		margin: 0;
	}
}
