body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

p {
    font-family: "Protest Strike", sans-serif; /* Or another font of your choice */
    font-size: 16px; /* Adjust font size if needed */
    font-weight: 1; /* Adjust weight to control boldness */
    line-height: 1.6; /* Adjust line height for readability */
    color: #424040; /* Optional: Set color of the text */
}

/* Style for the bio text inside the 'About Me' section */
#about p {
    font-family: "Protest Strike", sans-serif; /* Or another font of your choice */
    font-size: 16px; /* Adjust font size if needed */
    font-weight: 1; /* Adjust weight to control boldness */
    line-height: 1.6; /* Adjust line height for readability */
    color: #424040; /* Optional: Set color of the text */
}

#projects p {
    font-family: "Protest Strike", sans-serif; /* Or another font of your choice */
    font-size: 16px; /* Adjust font size if needed */
    font-weight: 1; /* Adjust weight to control boldness */
    line-height: 1.6; /* Adjust line height for readability */
    color: #424040; /* Optional: Set color of the text */
}

#contact p {
    font-family: "Protest Strike", sans-serif; /* Or another font of your choice */
    font-size: 16px; /* Adjust font size if needed */
    font-weight: 1; /* Adjust weight to control boldness */
    line-height: 1.6; /* Adjust line height for readability */
    color: #424040; /* Optional: Set color of the text */
}


header {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

header h1 {
    font-family: "Protest Strike", sans-serif; /* Apply the custom font */
    font-weight: 400;
    font-size: 36px; /* You can adjust the font size if needed */
    color: white; /* Keep text white */
}

/* Projects section styles */
#projects {
    padding: 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 16px;
    color: #555;
}

.project-card a {
    display: inline-block;
    margin-top: 10px;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.project-card a:hover {
    text-decoration: underline;
}




nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

/* Style for the navigation links */
nav ul li a {
    font-family: "Protest Strike", sans-serif; /* Or any font of your choice */
    font-size: 18px; /* Adjust font size if needed */
    font-weight: 400; /* Adjust weight as needed */
    color: white; /* Adjust color if needed */
    text-decoration: none; /* Remove underline */
}

nav ul li a:hover {
    color: #ccc; /* Optional: Change color on hover */
}



section {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Apply custom font to all h2 elements in the sections */
section h2 {
    font-family: "Protest Strike", sans-serif; /* Or any other font you want */
    font-weight: 400; /* Adjust weight if needed */
    font-size: 28px; /* Adjust font size if needed */
    color: #282727; /* Optional: Adjust color if needed */
}
/* Optionally customize each section in h2
#about h2 {
    font-size: 30px;
    color: #444; /* A slightly different color 
}

#projects h2 {
    font-size: 30px;
    color: #555;
}

#contact h2 {
    font-size: 30px;
    color: #666;
}   */

section h3 {
    font-family: "Protest Strike", sans-serif; /* Or any other font you want */
    font-weight: 400; /* Adjust weight if needed */
    font-size: 21px; /* Adjust font size if needed */
    color: #302f2f; /* Optional: Adjust color if needed */
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    /* Remove the position: fixed and width properties */
    /* position: fixed; */
    /* width: 100%; */
    margin-top: 20px; /* Add margin to push it below content */
}


/* Styling for the "Contact Me" section */
#contact {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

#contact .social-media {
    margin-top: 10px;
}

#contact .social-media a {
    margin: 0 10px;
    display: inline-block;
}

#contact .social-media img {
    border-radius: 50%; /* Makes the icons round */
    transition: transform 0.3s ease; /* Adds smooth hover effect */
}

#contact .social-media img:hover {
    transform: scale(1.2); /* Enlarge the icons slightly on hover */
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.4); /* Black background with transparency */
}

/* Modal Content Box */
.modal-content {
    background-color: white;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Can adjust size */
    max-width: 300px;
    text-align: center;
    border-radius: 10px;
}

/* Close Button */
.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
}

/* Keyframes for bounce effect */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0); /* No movement */
    }
    50% {
        transform: translateY(-10px); /* Bounce up */
    }
}

/* Apply bounce animation to each span inside the animated text */
#animatedText span {
    font-size: 20px; /* Adjust size if needed */
    font-weight: bold;
    display: inline-block; /* Necessary for transform to work on inline elements */
}

/* About Me images: personal photo and SDSU logo */
.about-images {
    display: flex; /* Align images side by side */
    align-items: center; /* Vertically center both images */
    gap: 20px; /* Add space between the images */
}

.about-images img {
    border-radius: 10px; /* Optional: Rounded corners for both images */
}



