/*
Theme Name: Sissy Slut Masha
Description: Modern portfolio landing page for Sissy Slut Masha
Version: 1.0
Author: Sissy Slut Masha
*/

body {
	font-family: 'Arial', sans-serif;
	margin: 0;
	padding: 0;
	background: linear-gradient(to bottom, #F71883, #FFFFFF);
	color: #333;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.header {
	text-align: center;
	padding: 2rem 0;
	width: 100%;
	color: white;
}

.header h1 {
	font-size: 3rem;
	margin: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-image {
	width: 250px;
	border-radius: 10%;
	object-fit: cover;
	border: 5px solid white;
	margin: 1rem auto;
	display: block;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin: 2rem 0;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: white;
	text-decoration: none;
	font-weight: bold;
	transition: transform 0.2s;
}

.social-link:hover {
	transform: scale(1.1);
}

.social-link img {
	width: 30px;
	height: 30px;
}

.footer {
	margin-top: auto;
	padding: 1rem;
	text-align: center;
	color: white;
	font-size: 0.9rem;
}