
/*universal initial setting*/
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	max-height: 100vh;
	max-width: 100vw;
	font-family: "Noto Sans", sans-serif;
	line-height: 1.4647325em;
	letter-spacing: 0em;
	background-color: #000000;
}
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
}

.profile, .about-me {
    width: 45%;
    text-align: center;
}

.profile img {
    width: 250px;
    height: 250px;
    /* border-radius: 50%; */
}

h1, h2 {
    margin: 10px 0;
}

.button {
    background-color: #f2f2f2;
    color: #000;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
}


/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 768px) {
	body{
		margin-top: 50px;
	}
	.about-me, .profile {
		width: 100%;
	}
	.profile img {
		width: 150px;
		height: 150px;
		/* border-radius: 50%; */
	}
	h1, h2 {
		margin: 10px 0;
	}
	h1 {
		font-size: 16px;
	}
	h2 {
		font-size: 14px;
	}
	p {
		font-size: 12px;
	}
	.button {
		background-color: #f2f2f2;
		color: #000;
		border: none;
		padding: 8px 18px;
		margin: 8px;
		cursor: pointer;
		font-size: 14px;
	}
}

 /*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767.98px) {

}

 /*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991.98px) {
	
}

 /*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199.98px) {

}

 /*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

}