:root {
    --p-font-size: 16px;
    --h2-font-size: 1.3rem;
    --p-font-weight: 510;
}

body {
    font-family: 'Georgia', sans-serif;
}

#title {
    text-align: left;
    width: 100%;
    padding-left: 30px;

}

#title h1 {
    font-size: 50px;
    margin-bottom: 15px;
}


img {
    height: 190px;
    width: 325px;
}

#projectsContainer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding-left: 50px;
    padding-right: 50px;
    gap: 50px 40px;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 50px;
    align-items: stretch;


}

.container {
    display: flex;
    flex-direction: column;
    width: 330px;
    /*height: 480px;*/
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 7%;
    gap: 10px;
    background-color: rgb(243, 243, 243);
    /*horizontal vertical blurRadius*/
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    justify-content: space-between;




}


h2 {
    text-align: center;
    margin-bottom: 0;
    min-height: 2rem;
    font-weight: 700;
    font-size: var(--h2-font-size);
}

p {
    flex-grow: 1;
    text-align: start;
    margin: 0px;
    margin-top: 10px;
    font-size: var(--p-font-size);
    font-weight: var(--p-font-weight);
}

.projectButton {
    background: #dfedf5;
    border: none;
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.8rem;
    cursor: pointer;
    transition: 0.2s ease;
    text-align: center;
    text-decoration: none;
    color: black;

}

.projectButton:hover {
    background: #bfd2e5;
    transform: translateY(-2px);
}


.description {
    font-size: 15px;
}