/* General styles */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #010224ea, #3a3a3f);
    color: #fdf9f5;
}

h1 {
    color: #e0860f;
}

header {
    background-color: #060707;
    color: rgb(243, 168, 5);
    text-align: center;
    padding: 40px 20px;
}

nav a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f19239;
    color: rgb(15, 2, 2);
    text-decoration: none;
    border-radius: 5px;
}

section {
    padding: 50px 20px;
}

.project {
    background-color: #095669;
    border: 1px solid #e71919;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.project img {
    width: 25%;
    height: auto; /* Change to auto to maintain aspect ratio */
    border-radius: 5px;
    margin-bottom: 10px;
}

.project a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: rgb(223, 158, 62);
    text-decoration: none;
    border-radius: 5px;
}

#about {
    background-color: #0a0736;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
}

button {
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.social-links {
    text-align: center; /* Center social links */
}

.social-links a {
    display: inline-block;
    margin-right: 20px;
    text-decoration: none;
    color: #e0860f;
}

footer {
    background-color: #3498db;
    color: rgb(46, 16, 16);
    text-align: center;
    padding: 20px 0;
}

nav {
    background-color: #444;
    padding: 10px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.intro {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #333;
    color: white;
    cursor: pointer;
}

/* Responsive styles */
@media only screen and (max-width: 800px) {
    header {
        padding: 20px 10px; /* Adjust padding for smaller screens */
    }

    nav a {
        padding: 8px 16px; /* Adjust padding for smaller screens */
    }

    .project img {
        width: 100%; /* Set image width to 100% for smaller screens */
    }
}

@media only screen and (max-width: 600px) {
    .project {
        padding: 15px; /* Adjust padding for smaller screens */
    }
}
