/* content Style.css */

/* Body styles */
body {
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header styles*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeInUp 1s ease; /* Animation effect */

}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
  

header h4 {
    margin: 2%;
}

h2,h3{
    margin: 2%;
}

.name {
    font-size: 30px;
}

.color_shape {
    color: #0056b3;
    font-size: 40px;
}
.additional-info{
    color: #6c6969; 
    margin: 0; 
    font-size: 15px; 
}


/* Navigation Bar styles */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

nav li {
    float: right; 
}

nav li a {
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease; 
}

nav li a:hover {
    background-color: #0056b3;
    border-radius: 3%;
}
/* Style form */

h2{
    text-align: center;
}
form {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 25px 25px 50px #696a6c;
    
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    box-shadow: 25px 25px 50px #696a6c;
    
}

input[type="submit"]:hover {
    background-color: #0056b3;
}
.follow-me {
    margin-top: 20px;
}

.follow-me label {
    display: block;
    margin-bottom: 5px;
}

.follow-me a {
    display: block;
    color: #0056b3;
}

.follow-me a:hover {
    text-decoration: none;
}

/* Footer styles */
footer {
    background-color: #4b4a4a;
    color: #fff; 
    text-align: center;
    padding: 30px;

}
