@import url(https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&display=swap);
body {
    background-color: #131415;
    color: #ffffff;
    margin: 0;
    padding: 0;
    
}

#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color: black;
	z-index:99;
}


#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

#particle {
    width: 100%;
    height: 100%;
    background-color: transparent; 
    z-index: -1; 
}
   

#status {
    text-align: center;
	width:100%;
	height:100%;
	position:absolute;
	background-image:url('https://i.pinimg.com/originals/19/09/f9/1909f9e57aca7d81ab5cbb50b9a7a069.gif');
	background-repeat: no-repeat;
	background-position:center;
	font-size: 25px;
	font-family: 'Readex Pro';
}


* {
    cursor: url(https://r2.guns.lol/0c65b978-8ebd-4b38-a5c3-dae906509a5c.cur) 16 16, auto !important;
}



.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #ffb400;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Readex Pro', sans-serif;
    z-index: 999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
}

.alert:hover {
    background-color: #ffb400;
}

.alert p {
    margin: 0;
}

.alert i {
    margin-right: 10px;
}

.hidden {
    display: none;
}

.hero-section {
    padding: 10px 15px;
    margin: 40px 180px;
}

.zero-section {
    padding: 10px 15px;
    margin: 40px 180px;
}

.profile-section {
    display: flex;
    align-items: flex-start;
}

.profile-image img {
    border-radius: 50%;
    width: 160px;
    border: 1px solid black;
    box-shadow: 0 0 20px 0px rgb(200,158,26);
}

.name-bio-section {
    margin-left: 20px;
    font-size: 17px;
}

.name-bio-section h3 {
    font-size: 24px;
    margin: 0;
    font-family: 'Readex Pro';
    color: rgb(213,226,66);
}

.bio p {
    font-family: 'Readex Pro';
    opacity: 0.9;
}

.social-container {
    margin: 50 0px;
}

.social-container p {
    display: flex;
    justify-content: space-evenly;
    font-size: 20px;
    font-family: 'Readex Pro';
    text-align: center;
    text-decoration: none;
    text-decoration: none !important;
}

.social-icons {
    display: flex;
    justify-content: space-evenly;
    color: white;
    font-size: 25px;
}

.social-icons a {
    text-decoration: none !important;
    color: inherit;
}

.social-icons a:hover {
    color: orange;
}

.skills-section h3 {
    font-size: 24px;
    margin: 0;
    font-family: 'Readex Pro';
    margin-top: 50px;
}

.skills-section ul {
    list-style: none;
    font-family: 24px;
    opacity: 0.9;
    font-family: 'Readex Pro';
}

.skills-section li {
    margin-top: 5px;
}

.learned-skills h3 {
    margin-top: 50px;
    font-size: 24px;
    font-family: 'Readex Pro';
}

.knowledge-container {
    display: flex;
    flex-wrap: wrap;
}

.knowledge-item {
    margin: 10px;
    padding: 7px 10px;
    border: 1px solid #2b3031;
    border-radius: 5px;
    font-family: 'Readex Pro';
    font-size: 16px;
    color: white;
    opacity: 0.9;
}

.extra-info h3 {
    margin-top: 50px;
    font-size: 24px;
    font-family: 'Readex Pro';
}

.extra-info p {
    font-size: 16px;
    font-family: 'Readex Pro';
    opacity: 0.9;
}

@media only screen and (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        align-items: center;
    }

    .profile-image {
        margin-bottom: 20px;
    }

    .name-bio-section {
        text-align: left;
    }

    .social-container p,
    .social-icons {
        display: flex;
        justify-content: space-evenly;
    }

    .extra-info h3 {
        margin-top: 20px;
    }

    .hero-section {
        padding: 0;
        margin: 20px 20px;
    }

    .zero-section {
        margin: 20px 30px;
        padding: 0;
    }
}



.quote {
    text-align: center;
    font-family: 'Readex Pro';
}

footer {
    margin-top: 20px;
    text-align: center;
    font-family: 'Readex Pro';
}

html {
    scroll-behavior: smooth;
}

