/* 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;
}

/*
my own css
*/

img{
    width: 100%;
}
body{
	font-size: 20px;
}
header{
    padding: 2px;
    border-radius: 5px;
    background-color:rgb(165, 165, 165);
    margin: 10px;
    color: whitesmoke;
    display: flex;
    justify-content: space-between;
	height: 80px;
}
.nav{
	font-size: 30px;
	margin: auto;
	padding: 5px;
	background-color: rgb(25, 255, 150);
	border-radius: 5px;
	text-align: center;
	text-decoration: none;
	color: rgb(25, 25, 25);
	transition: transform 1s;
}
.nav:hover{
    transform: scale(1.2, 1.2);
}
div{
    background-color: rgb(165, 165, 165);
	margin: 15px;
	border-radius: 10px;
}
h1{
    font-size: 25px;
	color: rgb(25, 255, 150);
    text-align: center;
    padding: 10px;
}
.badge{
	width: 30%;
	margin: 1.5%;
}
.badge p{
	text-align: center;
	font-size: 20px;
}
#flexcert{
	padding: 2px;
    border-radius: 5px;
    background-color:rgb(165, 165, 165);
    margin: 10px;
    color: whitesmoke;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-around;
}
#resume {
	width: 65%;
	margin-left: 17.5%;
	margin-top: 2.5%;
	margin-bottom: 2.5%;
	border-radius: 10px;
}
.grids {
	display: grid;
    grid-template-areas:
    't t'
	'i p';
    gap: 12px;
}
.t{
	grid-area: t;
}
.i{
	grid-area: i;
}
.p{
	grid-area: p;
}
#about {
	display: grid;
    grid-template-areas:
    'a a a'
	'b c c'
	'b d e';
    gap: 12px;
}
.a{
	grid-area: a;
}
.b{
	grid-area: b;
	border-radius: 10px;
	padding: 5px;
}
.c{
	grid-area: c;
}
.d{
	grid-area: d;
}
.e{
	grid-area: e;
	border-radius: 10px;
	width: 97.5%;
}
#contact{
	padding: 10px;
}