
/*

ANmar Amdeen 2024-03-02
Color pallette              2024-02-29
Text    Baby Blue           #B3D8E0
Link1   Blue Grotto         #3970A0
BG      Dark Blue           #0B2840
Text2   Baby Blue           #B3D8E0     << footer
BG2     Blue                #222222     << footer
#bcaa96
#f6f6f6
*/



/* Global
--------------------------------------- */
html {
	box-sizing: border-box;
	font-size: 62.5%;
}
*, *:before, *:after {
	box-sizing: inherit;
}
html, body {
	height: 100%
}

body {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
	background: #0B1830;
	color: #B3D8E0;
	margin:0;
	font-size: 1.5rem;
	line-height: 1.4;
}

h1, h2, h3 {
  font-family: "Madimi One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin:0;
}
h1 {
	font-size:7rem;
	line-height: 0.85;
}
h2 {
	font-size: 3.6rem;
}
h3 {
	font-size: 2.4rem;
	line-height: 0.85;
}
a {
	color:#3970A0;
}
a:hover {
	color: #bcaa96;
	text-decoration: none;
}
.btnn {
	background: #3970A0;
	color:#f6f6f6 ;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.2rem;
	display: inline-block;
	padding: 10px;
	letter-spacing: 0.15em;
	line-height: 1;
	border-radius: 4px;
}
.content-wrapper {
	max-width: 1300px;
	margin:0 auto;
	padding: 30px;
}




/* Home
--------------------------------------- */
.home {
	display: flex;
	flex-direction: column;
}
.home .content-wrapper {
	flex: 1 0 auto;
}
.home .content-bg {
	background: #0B2840D0;
	margin-top:20px;
	padding: 35px;
}
@media screen and (max-width:650px) {
	.home .content-wrapper {
		padding:10px;
	}
	.home .content-bg {
		padding:20px;
	}
}
@media screen and (min-width:350px) {
	.home {
	background: url(../images/bg-2023-12-02ANmarMent.jpg) no-repeat ;
	background-size: cover;
	background-position: center;
}
}
.sites-list {
	list-style-type: none;
	padding: 0;
	display: flex;
	justify-content:flex-start;
}
.sites-list li {
	display: inline-block;
	margin-left: 10px;
}
	

/* Resume
--------------------------------------- */
.resume header::before {
	background: url(../images/bg-2023-12-02ANmarMent.jpg) center ;
	background-size: cover;
	content: "";
	display: block;
	height: 375px;
}
.profile-grid {
	display: grid;
	grid-template-columns: 4fr 1fr;
	column-gap: 20px;
}
.profile-grid a {
	margin-top:20px;
}
.resume-section {
	margin-bottom: 90px;
}
.resume-section h2 {
	border-bottom: 2px dashed #f6f6ff;
}
.myresume-link {
	position: fixed;
	top:5px;
	right: 5px;
	font-size:1.5rem;
}
@media screen and (max-width:1000px) {
	.myresume-link {
		position: absolute;
	}
}
@media screen and (max-width:6200px) {
	.resume header::before {
		height: 200px;
	}
	h1 {
		font-size:5rem;
	}
	h2 {
		font-size: 2.9rem;
	}
}	


/* Projects
--------------------------------------- */
.project-item {
	margin: 30px 0;
}
.project-item img {
	width: 300px;
}
@media screen and (max-width: 599px) {
.project-item img {
	width: 100%;
	margin-bottom: 10px;
}
	
}
@media screen and (min-width:640px) and (max-width: 859px) {
.project-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
}
.project-item img {
	width: 100%;
}
}
@media screen and (min-width: 860px) {
.project-item {
	display: flow-root;
}
.project-item img {
	float: left;
	margin-right: 20px;
}
	
}

/* Work Experience
--------------------------------------- */
.work-item {
	margin: 30px 0;
}
.work-details p {
	margin: 0;
}
@media screen and (min-width:800px) {
	.work-item {
		display:grid;
		grid-template-columns: 1fr 3fr;
		column-gap: 20px;
	}
	.work-summary p:first-child {
		margin-top: 0;
	}

}

/* Education
--------------------------------------- */
.education-item {
	margin: 30px 0;
}
.education-item p{
	margin: 0;
}

/* Footer
--------------------------------------- */
footer {
	background: #222222;
	color:#B3D8E0;
}
footer a {
	color:#bcaa96;
}
footer a:hover {
	color:#3970A0;
	text-decoration: none;
}

.socials {
	list-style-type: none;
	padding: 0;
}
.socials li {
	display: inline-block;
	margin-left: 10px;
}
.socials img {
	width: 32px;
}
.socials img:hover {
	opacity: 50%;
}
@media screen and (min-width:860px) {
	footer {
		padding: 0 35px;
		display: flex;
		justify-content: space-between;
	}
}
@media screen and (max-width:859px){
	footer {
		text-align: center;
		padding: 10px;
	}
}














