/* Stylesheet for main / home page */

h2,
h3 {
    margin: 0;
}

.aboutme-section {
    margin: 75px 0 0;
}

/* Portfolio section */

.portfolio-section {
    margin-bottom: 100px;
}

.portfolio-section h2 {
    text-align: center;
    margin: 0; 
}

.projects-container {
    margin: 70px 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;
}

.project {
    border: 3px solid #348074;
    border-radius: 15px;
    text-align: center;
    background-color: #1e1e2e;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
    max-width: 500px;
}

/* Move project up when hovered over */
.project:hover {
    transform: translateY(-15px) scale(1.02);
    border: 3px solid white;
}

.project img {
    max-width: 100%;
    border-radius: 13px 13px 0 0;
    margin-bottom: 20px;
    /* Ensure that the image has a pointer cursor instead of magnifying glass when hovered over */
    cursor: pointer !important;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.see-more {
    font-size: 1.5rem;
    border: 2px solid white;
    width: fit-content;
    margin: auto;
    padding: 15px 40px;
    color: white;
    text-decoration: none;
    transition: 0.4s ease;
}

.see-more:hover {
    background-color: white;
    color: black;
}

/* Education section */

.education-section h2 {
    text-align: center;
}

.date {
    font-size: 1rem;
    color: lightgrey;
}