body {
    background-color: #FFFDF2;
    margin-top: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.intro-text {
    display: flex;
    text-align: center;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: xx-large;
}

.project-cards {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
}

.project-card {
    text-decoration: none;
    margin: 10px 25px;
    display: flex;
    flex-direction: column;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project-name {
    color: black;
    font-size: large;
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-style: normal;
}

.project-description {
    padding: 10px;
    color: #333;
    font-size: 18px;
    margin: 10px;
    font-family: "Newsreader", serif;
    font-weight: 400;
    font-style: normal;
}

.disclaimer {
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
    font-family: "Jersey 15", serif;
    font-weight: 400;
    font-style: normal;
    font-size: x-large;
}
