* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #101010;
}

.topic {
    height: 100vh;
    width: 100%;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-left: 8%;
    padding-right: 8%;
    border-bottom: solid #471AA0 5px;
}

.logo {
    cursor: pointer;
}
.logo img {
    width: 150px;
    height: auto;
}

span {
    color: #471AA0;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    padding: 10px 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: capitalize;
}

.current-page {
    color: #471AA0;
    font-size: x-large;
}

nav ul li a:hover {
    color: #471AA0;
    transition: .4s;
}

.content {
    margin-top: 20%;
    left: 8%;
    transform: translateY(-50%);
    text-align: center;
}

h1 {
    color: white;
    margin: 20px 0px 20px;
    font-size: 75px;

}

h3 {
    color: white;
    font-size: 25px;
    margin-bottom: 50px;
}

h4 {
    color: #471AA0;
    letter-spacing: 2px;
    font-size: 20px;
}

.about {
    border-bottom: 0.3px solid #505050;
    border-top: 0.3px solid #505050;
    
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 50px 50px;
    text-align: center;
}
.main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.about-image {
    width: 40%;
}

.about-image img {
    width: 80%;
    margin-left: 50px;
}
.about-text {
    width: 50%;
}
.about-text h2 {
    color: #471AA0;
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about-text h5 {
    color: #471AA0;
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.about-text p{
    color:white;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 15px;
    text-align: justify;
}

footer{
    width: 100%;
    text-align: center;
    display: flex;
    border-top: 0.3px solid #505050;
}

footer .contact {
    width: 35%;
    padding-left: 10%;
    padding-right: 20px;
    padding-top: 15px;
}

footer .contact p{
    color: #471AA0;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    position: relative;
}

footer .social {
    display: flex;
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.social i{
    font-size: 30px;
    color: white;
    padding-left: 100px;
    margin-bottom: 10px;
    
}

.social i:hover{
    font-size: 35px;
    color: #471AA0;
    transition: .4s;

}

#page-title {
    text-align: center;
}
 /* Skills page specific styling */
.skills {
    width: 40%;
    margin:0% 5%;
    padding: 2% 5%;
    border: 0.3px solid #505050;
    border-radius: 5%;
}

.skills ul {
    list-style-type: none;
    color: white;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 18px;
}

.skills progress {
    width: 100%;
    margin-bottom: 50px;
    border-radius: 10em;
    color: #471AA0;
}

/* Styling for the progress bar on skills page */
progress::-webkit-progress-value {
    background-color: #50299d;
}
progress::-webkit-progress-bar {
    background-color: #ffffff;
}

/* Project page specific styling */
.project {
    width: 25%;
    height: 60%;
    margin: 50px 50px;
    padding: 10px;
    border: 0.3px solid #505050;
    border-radius: 5%;
    text-align: center;
}
.project h6 {
    color: #471AA0;
    letter-spacing: 2px;
    font-size: 25px;
    margin-top: 17px;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.project p {
    color: white;
    letter-spacing: 1px;
    line-height: 17px;
    font-size: 17px;
    margin-bottom: 45px;
    text-align: justify;
    padding: 0% 3%;
}

.project img{
    height: 50%;
    width: 80%;
    border-radius: 5%;
}

.project:hover {
    border: 0.3px solid #471AA0;
}
.project a{
    text-decoration: none;
}

/* scrollbar customization */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #101010;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
}

::-webkit-scrollbar-thumb:hover {
    background: #471AA0;
}