/* 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;
}
 /* Page styles */
 body {
    color: #1A1A1A;
    background-color: #ebeee6;
    font-family: Arial, 'Times New Roman', Times, serif
 }

 h1{
   padding: 15px 0;
   border-bottom: 2px solid rgb(14, 15, 14);
   font-size: 60px;
   font-style: italic;
   margin-top: 1.2em;
   margin-left: 1.8em;
   margin-right: 1.8em;
   text-align: center;
   font-family: "Kumar One",'Times New Roman',Times,serif
 }

.container{
   gap: 60px;
   margin-top: 8rem;
   display: flex;
   justify-content: center;
}

.image-wrapper{
   position: relative;
   margin: 15px;
}

.button{
   font-size: 15px;
   position:absolute;/*positions the button relative to the image wrapper*/
   top: 0%;
   left: 50%;/*centered the button*/
   transform: translate(-50%, -130%);/*contols the axis of the button*/
   background-color:#DAD8C9;
   border: #1A1A1A;
   padding: 10px 20px;
   cursor: pointer;
}

a{
   text-decoration: none;
   color: black;
}
 
img{
   display: block;
   max-width: 100%;
   height: auto;
   margin-bottom: 3rem;
}

#explain{
   font-size: 20px;
   line-height: 1.45;
   text-align: center;
   margin-top: 1.5rem;
   margin-left: 5rem;
   margin-right: 5rem;
   font-family: "Gowun Dodum", 'Times New Roman', Times, serif;
 
}

p{
   font-size: 20px;
   line-height: 2.50;
   margin-top: 1.5rem;
   margin-left: 9rem;
   margin-right: 9rem;
   font-family: "Gowun Dodum", 'Times New Roman', Times, serif;
}

p:last-child{
   margin-bottom: 5rem;
}

#website-images{
   display: block;
   margin-left: auto;
   margin-right: auto;
   margin-top: 1rem;
   
}

.wrapper{
   display: flex;
   flex-direction: column;
}

main{
   flex:1;
   padding:20px;
   margin-bottom: 1.5rem;
}
footer{
   background-color: #DAD8C9;
   color: black;
   padding:50px;
   font-size: 20px;
}
.social-media a{
   padding: 15px;
   text-decoration: none;
   color: #1A1A1A;
}

.navbar{
   margin-top: 1.5rem;
   margin-left: 1.8rem;
   margin-right: 1.8rem;
   background-color: #DAD8C9;
   padding: 10px;
}

.navbar-list{
   display: flex;
   justify-content: center;
   gap: 50px;
}


.navbar a{
   text-decoration: none;
   color: #1A1A1A;
   padding: 15px;
   display: block;

}
.navbar-list a:hover{
   background-color: #a09e91;
}

