/* Reset some default styles */
body, h1, h2, p, a {
    margin: 0;
    padding: 0;
}

/* Apply a background color and center align text */
body {
    background-color: #b00707;
    text-align: center;
}

/* Style the header */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

    header h1 {
        font-size: 32px;
    }

/* Style the projects section */
.projects {
    margin: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 10px;
    padding: 20px;
    width: 300px;
}

    .project h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .project p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .project a {
        background-color: #333;
        color: white;
        display: block;
        padding: 10px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

        .project a:hover {
            background-color: #555;
        }

/* Style the About Me and Contact sections */
.about-me, .contact {
    background-color: white;
    margin: 20px;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
}

    .about-me h2, .contact h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

/* Add responsive styles if needed */
@media (max-width: 768px) {
    .projects {
        flex-direction: column;
        align-items: center;
    }

    .project {
        width: 100%;
    }
}
