@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}
p{
    max-width: 1200px;
    margin: 0px auto;
    margin-bottom: 25px;
    font-size: 24px;
}
h2{
    text-align: center;
    color: #fff;
    font-size: 40px;
    margin: 0px;
    margin-bottom: 40px;
    text-transform: uppercase;
}
h3{
    color: #fff;
	margin-block-start: 0em;
	margin-block-end: 0em;
	padding: 15px 0px 20px 0px;

}
footer{
	background: #171717;
    width: 100%;
    text-align: center;
    padding: 20px 0px;
    color: #fff;
}
.projects a{
	text-decoration: none;
}
.line{
    background: linear-gradient(135deg, #0c4e83, #824509);
    height: 4px;
    width: 100%;
    margin: 40px 0px;
	border-radius: 30px;
}
.projects_page{
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
/*Страница обо мне начало*/
.about_me_page {
	margin: 0;
	display: flex;
	height: 100vh;
	margin-top: 85;
}
.left {
	width: 30%;
	background: #171717;
	padding: 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 165px;
	/*justify-content: center;*/
}
.left img {
	width: 100%;
	max-width: 400px;
	border-radius: 10px;
}
.contact-info {
	margin-top: 20px;
	text-align: left;
}
.contact-info p {
	display: flex;
	align-items: center;
	margin: 10px 0;
	font-size: 20px;
}
.contact-info a {
	text-decoration: none;
	transition: color 0.3s;
	color: #fff;
}
.contact-info a:hover{
	color: #ff6600;
} 
.contact-info i{
	width: 35px;
	color: #ff6600;
}
.adress i{
	padding-right: 4px;

}
.right {
	width: 70%;
	padding: 40px;
	margin-top: 100px;
	max-width: 800px;
}
		
/*Страница обо мне конец*/
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #0c4e83, #824509);
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.menu li {
    display: inline;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ff6600;
}

.header {
    text-align: center;
    padding: 150px 0px 100px;
    background-color: #222;
    color: white;
    padding-bottom: 0px;
    width: 100%;
}
.stat_img{
	max-width: 1200px;
	margin: 0px auto;
	margin-bottom: 20px;
}
.stat_img img{
	width: 100%;
}
.view-projects {
    padding: 12px 24px;
    font-size: 18px;
    border: none;
    background-color: white;
    color: #ff3300;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
    font-weight: 600;
}

.view-projects:hover {
    background-color: #222;
    color: white;
}
#projects img{
	width: 100%;
}
.projects {
    display: grid;
    grid-template-columns: 1fr;
    /*gap: 30px;*/
    /*padding: 0px 20px;*/
    max-width: 1200px;
    width: 100%;
}

.project-card {
    margin-bottom: 30px;
    background: linear-gradient(135deg, #0c4e83, #824509);
    padding: 20px;
    padding-bottom: 0px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.project-card:hover {
    transform: translateY(-15px);
}

.project-card img {
    max-width: 100%;
    border-radius: 10px;
}

/* SOLO GAME PAGE */

#page_projects img{
	width: 100%;
	text-align: center;
}
#page_projects h1{
	margin: 0px;
	margin-bottom: 20px;
}

#page_projects h2{
	font-size: 20px;
    text-align: left;
    text-transform: none;
	margin-bottom: 20px;
}
#page_projects h3{
	margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, #0c4e83, #824509);
    text-align: center;
    border-radius: 10px;
    padding: 5px 0px;
}
#page_projects p{
	font-size: 18px;
	width: 100%;
}

#page_projects ul{
	margin: 0px;
	font-size: 16px;
    font-family: 'Poppins', sans-serif;
	margin-bottom: 20px;
}

#page_projects ul li{
	font-size: 16px;
    font-family: 'Poppins', sans-serif;
	color: #b3671b;
}

#page_projects ul li p{
	margin-bottom: 0px;
	color: #fff;
}

#page_projects .line{
	margin: 25px 0px 20px 0px;
}
#page_projects span{
    display: contents;
    color: #b3671b;
    font-weight: 700;
    font-size: 25px;
}
#page_projects iframe
{
	width: 500px;
    height: 300px;
}
#page_projects{
	width: 90%;
}
#page_projects i{
	font-size: 50px;
}