/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: rgb(67, 67, 67);
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    background-color: #141414;
}

nav li {
    display: inline;
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: rgb(65, 65, 65);
    font-size: 1.2em;
}

nav a:hover {
    color: #3498db;
}

/* About Section Styles */
.about {
    text-align: center;
    padding: 40px 20px;
    background-color: #141414;
    margin: 20px 0;
    border-radius: 10px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #35424a;
}

/* Skills Section Styles */
.skills {
    padding: 40px;
}

.skills-item {
    margin: 20px 0;
}

.skills-item h3 {
    color: #3498db;
}

/* Project Section Styles */
.projects-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.project-item {
    margin-bottom: 20px;
}

/* Contact Section Styles */
.contact-details {
    padding: 20px;
}

.contact-item {
    margin-bottom: 20px;
}

/* Form Styles */
form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #474646;
}

form button {
    background-color: #3498db;
    color: rgb(61, 61, 61);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #2980b9;
}

/* Button Hover Effects */
#colorButton {
    padding: 10px 20px;
    background-color: #3498db;
    border: none;
    color: rgb(104, 103, 103);
    cursor: pointer;
    font-size: 1.2em;
}

#colorButton:hover {
    background-color: #2980b9;
}
