body {
    background-image: url('https://wallpaperaccess.com/full/647319.jpg');
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: overlay;
    color: #212529;
    font-family: Verdana, sans-serif;
    font-size: 20px;
    margin: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #343A40;
    padding: 15px 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.navbar .logo span {
    font-size: 22px;
    font-weight: bold;
    color: #F8F9FA;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #F8F9FA;
    font-size: 18px;
    transition: 0.3s;
}

.navbar .nav-links a:hover {
    color: #007BFF;
}

.header {
    padding: 50px;
    background: #495057;
    color: #F8F9FA;
    font-size: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #6C757D;
}

.text h1 {
    font-size: 40px;
    font-weight: bold;
    color: White;
    margin-left: 100px;
}

.text h2 {
    font-size: 28px;
    color: #E9ECEF;
    font-style: italic;
    margin-top: 10px;
    margin-left: 110px;
}
.text p {
    font-size: 28px;
    color: #E9ECEF;
    font-style: italic;
    margin-top: 10px;
    margin-left: 110px;
}
.header-img {
    max-width: 20%;
    height: auto;
    border-radius: 50%;
    margin-right: 200px;
    border: 3px solid black;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.header-img:hover {
    transform: scale(1.1); 
    border-color: white; 
}

 /* About me part */
.about-section {
    padding: 60px;
    text-align: center;
    background-color: rgba(52, 58, 64, 0.8);
    margin: 40px auto;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
}

.about-section h1 {
    color: #f8f9fa;
    font-size: 36px;
    margin-bottom: 10px;
}

.about-section p {
    color: #ced4da;
    line-height: 1.6;
    font-size: 18px;
}
.education-section {
    padding: 60px;
    background-color: rgba(52, 58, 64, 0.8);
    margin: 40px auto;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
}
 /* Education bg */
.education-section h1 {
    color: #f8f9fa;
    font-size: 36px;
    margin-bottom: 20px;
}

.education-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    color: #e9ecef;
}

.education-table th, .education-table td {
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 18px;
}

.education-table th {
    background-color: #343a40;
    color: #f8f9fa;
}

.education-table td {
    background-color: #495057;
}

 /* Skill part  */
.skills-section {
    padding: 60px;
    background-color: rgba(108, 117, 125, 0.9);
    margin: 40px auto;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.skills-section h1 {
    color: #f8f9fa;
	margin-top: 150px;
	text-align: center;
}

.skills-section h2 {
    color: #f8f9fa;
	text-align: center;
}


.skill-card {
    background-color: #495057;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.skill-card:hover {
    transform: scale(1.05);
    background-color: #343a40;
}

.skill-card ul {
    padding: 20;
    color: #e9ecef;
}

.skill-card ul li {
    margin: 10px;
    font-size: 18px;
}

 /* For games */
.games-section {
    padding: 60px;
    background-color: rgba(52, 58, 64, 0.9);
    margin: 40px auto;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.games-section h1 {
    color: #f8f9fa;
    font-size: 36px;
    margin-bottom: 40px;
}

.game-card {
    display: inline-block;
    margin: 20px;
    padding: 20px;
    background-color: #495057;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 280px;
    transition: 0.3s;
}

.game-card:hover {
    transform: scale(1.05);
}

.game-card img {
    width: 250px; 
    height: 350px; 
    object-fit: cover; 
    border-radius: 10px;
    margin-bottom: 15px;
}

.game-card h2 {
    color: #f8f9fa;
    font-size: 24px;
}

.game-card p {
    color: #ced4da;
    font-size: 16px;
}

 /* For Anime*/
.anime-section {
    padding: 60px;
    background-color: rgba(108, 117, 125, 0.9);
    margin: 40px auto;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.anime-section h1 {
    color: #f8f9fa;
    font-size: 36px;
    margin-bottom: 40px;
}

.anime-card {
    display: inline-block;
    margin: 20px;
    padding: 20px;
    background-color: #495057;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 280px;
    transition: 0.3s;
}

.anime-card:hover {
    transform: scale(1.05);
}

.anime-card img {
    width: 250px;
    height: 350px;
    object-fit: cover; 
    border-radius: 10px;
    margin-bottom: 15px;
}

.anime-card h2 {
    color: #f8f9fa;
    font-size: 24px;
}

/* For Music */
.music-section {
    padding: 60px;
    background-color: rgba(52, 58, 64, 0.9);
    margin: 40px auto;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.music-section h1 {
    color: #f8f9fa;
    font-size: 36px;
    margin-bottom: 40px;
}

.music-card {
    display: inline-block;
    margin: 35px;
    padding: 20px;
    background-color: #495057;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 280px;
    transition: 0.3s;
	align-items: center;
}

.music-card:hover {
    transform: scale(1.05);
}

.music-card img {
    width: 250px; 
    height: 250px; 
    object-fit: cover; 
    border-radius: 10px;
    margin-bottom: 15px;
}

.music-card h2 {
    color: #f8f9fa;
    font-size: 24px;
}

.music-card p {
    color: #ced4da;
    font-size: 16px;
}

.video-section {
    padding: 60px;
    background-color: rgba(33, 37, 41, 0.9);
    margin: 40px auto;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.video-section h1 {
    color: #f8f9fa;
    font-size: 36px;
    margin-bottom: 40px;
}

.video-card {
    display: inline-block;
    margin: 35px;
    padding: 20px;
    background-color: #495057;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 340px;
    transition: 0.3s;
    text-align: center;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card iframe {
    width: 300px;
    height: 170px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.video-card h2 {
    color: #f8f9fa;
    font-size: 20px;
}

.video-card p {
    color: #ced4da;
    font-size: 16px;
}


.footer {
    background-color: #343a40;
    padding: 20px;
    text-align: center;
    color: #f8f9fa;
    font-size: 14px;
    width: 100%;
    position: relative;
    bottom: 0;
}

.footer p {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.footer a {
    color: #f8f9fa;
    margin: 0 10px;
}

.footer a:hover {
    color: #17a2b8;
}


.copyright {
    color: #adb5bd;
}
.center{
	display: flex;
	flex-direction: coloumn;
	align-items: center;
}