/*CSS RESET*/

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;
	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;
}


/* END OF CSS RESET */


#container {
    display: grid;
    grid-template-areas: 
        "navbar navbar"
        "content3 content2"
        "footer footer";
    gap: 20px;
    background-color: red;
    color: white;
}

.content1,
.content3 {
    align-items: center;
    margin-top: -20px;
}

.logo-placeholder {
    padding-left: 30px;
}

.navbar {
    display: flex;
    flex-direction: row;
    flex-flow: reverse;
    align-items: center;
    grid-area: navbar;
    background-color: rgb(111, 171, 206);
    color: black;
}

.nav {
    margin-left: 60%;
    width: 40%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin-top: 5px;
    padding-right: 40px;
}

.link {
    padding-top: 10px;
}

.my-button {
  background-color: #52c256;  
  color: rgb(0, 0, 0);
  box-shadow: 3px 3px 3px;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.my-button:hover {
  background-color: #45a049;
}

.content2 {
    grid-area: content2;
}

.content3 {
    grid-area: content3;
    padding-left: 10px;
    background-color: black;
    border-bottom-right-radius: 10px;
    padding: 20px;
    padding-top: 26px;
}

.footer {
    grid-area: footer;
    padding-top: 72px;
    display: flex;
    justify-content: center;
}

.marioimage {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.luigi_image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
}

.luigicoins {
    max-width: 200px;
}

.Mario_about {
    position: absolute;
    bottom: 200px;
    right: 380px;
    max-width: 500px;
}