/* 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;
}

/* --------------------------------------------------------------------- */

body {
    background-image: linear-gradient(to bottom, white, #ABE3C4);
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

nav {
    position: sticky;
    top: 0;

    padding: 0.2%;
    background-color: white;

    display: flex;
    justify-content: right;

    z-index: 9999;
}

button {
    transition: 0.25s ease;
}
button:hover {
    transform: scale(1.1);
}

.navbutton {
    margin: 2%;
    padding: 0.4%;
    padding-left: 1.2%; padding-right: 1.2%;
    border-radius: 70px;

    width: 150px;
    height: 80px;
    
    text-align: center;

    background-color: #ABE3C4;
    color: white;
    font-size: 175%;
    font-family: Arial, Helvetica, sans-serif;
    border: none;
}

#introduction {
    display: flex;
    align-items: center;
    justify-content: center;
}
.left {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.right {
    display: flex;
    flex-direction: column;
    width: 50%;
}

#greeting {
    grid-area: "greeting";
    background-color: white;
    border-radius: 60px;

    color: #122A2C;
    font-size: 400%;
    font-family: Arial, Helvetica, sans-serif;

    margin: 4%;
    margin-left: 8%;
    padding: 1%;

    width: 120%;

    transition: 0.25s ease;
}
#greeting:hover {
    transform: scale(1.05);
}

#logo {
    grid-area: "logo";
    margin-top: -43%;
    margin-left: 39%; 

    width: 30%;
    height: 30%;

    transition: 0.25s ease;
}
#logo:hover {
    transform: scale(1.05);
}

#me {
    grid-area: "me";
    background-color: white;
    border-radius: 60px;

    color:#122A2C;
    font-size: 150%;
    font-family: Arial, Helvetica, sans-serif;

    margin: 4%;
    margin-left: 8%;
    padding: 1%;

    width: 85%;

    transition: 0.25s ease;
}
#me:hover {
    transform: scale(1.05);
}


#certsection {
    display: flex;
    justify-content: left;

    background-color: white;
    border-radius: 20px;

    margin: 4%;
    margin-left: auto; margin-right: auto;
    padding: 1%;

    width: 70%;

    color:#122A2C;
    font-family: Arial, Helvetica, sans-serif;
    transition: 0.25s ease;
}
#certsection:hover {
    transform: scale(1.05);
}

#certimage {
    width: 250px;
    height: 250px;
    transition: 0.25s ease;
}
#certimage:hover {
    transform: scale(1.1);
}

#certinfo {
    color:#122A2C;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 300%;
    margin-left: 1%;
    margin-top: auto;
    margin-bottom: auto;
}

.galleryphoto {
    width: 14%;
    height: 14%;
    transition: 0.25s ease;
}
.galleryphoto:hover {
    transform: scale(1.1);
}

#certthumbnail {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: -3%;
}

#matmatics {
    width: 40%;
    margin: 4%;
    margin-top: 8%;
    padding: 3%;

    background-color: white;
    color: #122A2C;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 450%;

    display: flex;
    align-items: center;
    
    justify-content: space-between;

    border-radius: 20px;

    transition: 0.25s ease;
}
#matmatics:hover {
    transform: scale(1.05);
}

#github {
    width: 70%;
    margin: 4%;
    margin-top: 0%;
    padding: 3%;

    margin-left: auto; margin-right: auto;

    background-color: white;
    color: #122A2C;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 500%;

    text-align: center;

    border-radius: 20px;

    transition: 0.25s ease;
}
#github:hover {
    transform: scale(1.05);
}

#resume {
    width: 70%;
    margin: 4%;
    margin-top: 0%;
    padding: 3%;

    margin-left: auto; margin-right: auto;

    background-color: white;
    color: #122A2C;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 500%;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    border-radius: 20px;
}
