/*=================================================*/

* {
    box-sizing:border-box;
}
body {
    margin:0;
    background:#f1f1f1;
    font-family:"Raleway", sans-serif;
    font-size:120%; 
}
img {
    width:100%;
    padding:5px;
}
a {
    color:black;
    text-decoration:none;
}
a:hover {
    text-decoration:underline;
}

/*=================================================*/

.header {
    padding:20px 0px 40px 0;
    text-align:center;
}
.header h1 {
	font-family:'Great Vibes',cursive;
	font-size:3em;
	font-weight:normal;
	margin-bottom:0px;
}
.header a {
    color:black;
}
.header a:hover {
    text-decoration:none;
}

/*=================================================*/

.navbar {
    text-align:center;
    background:white;
    border-bottom:1px solid #ddd;
}
.navbar a {
    padding:20px;
    display:inline-block;
    border-bottom:1px solid #ddd;
    transition:all 0.4s ease;
}
.navbar a:hover {
    text-decoration:none;
    border-bottom:1px solid black;
}

/*=================================================*/

.row {
	width:100%;
    max-width:1082px;
    margin:auto;
    padding:20px 0 20px 0;
    display:table;
}
.main {
	width:100%;
    padding:40px;
    text-align:center;
    display:table-cell;
    background:white;
    border-bottom:1px solid #ddd;
}
.line {
	margin:40px 0px 40px 0px;
	border-bottom:1px solid #ddd;
}
.link {
	padding:20px 0 20px 0;
    display:block;
}

/*=================================================*/

.overlay {
	position: fixed;
	z-index:99;
	top:0;
	left:0;
	width:100%;
	height:100%;
	display:flex;
	align-items:center;
	text-align:center;
	background:rgba(255, 255, 255, 0.8);
	visibility:hidden;
	transition:opacity .3s;
}
.overlay img {
	max-width:100%;
	max-height:100%;
	width:auto;
	height:auto;
	margin:auto;
	padding:40px; /*new*/
	background:white; /*new*/
	transform:scale(0.95);
	transition:transform .3s;
}
.overlay:target {
	visibility:visible;
	outline:none;
	opacity:1;
}
.overlay:target img {
	transform:scale(1);
}

/*=================================================*/

.footer {
    padding:4px;
    background:white;
    text-align:center;
}

/*=================================================*/

@media screen and (max-width:900px) {
    .header, .navbar, .main, .footer, .navbar a {   
        width:100%;
    }
    .main {
        padding:10px 5px 10px 5px;
        display:block;
    }
    body {
        font-size:100%; 
	}
	.overlay img {
		padding:0px;
}
}

/*=================================================*/
/*=================================================*/
/*=================================================*/
