body {
    background-color: aliceblue;
    font-family: "Georgia", "serif";
}

#content {
    width: 70%;
    margin: auto;
    min-width: 300px;
}



#contact, #navbar, #projects {
    border-radius: 5px;
    margin: 10px;
    border: 1px solid black;
    background-color: white;
    color: black;
    padding: 5px;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#message {
    text-align: center;
}

#projects {
    padding: 20px;
}

#contact, #navbar, #projectContainer {
    color: black;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#projectContainer {
    margin: auto;
    justify-content: center;
}

#contact {
    justify-content: center;
}

#navbar {
    justify-content: flex-end;
}

.footerLinks, .navItem {
    color: black;
    margin-left: 5px;
    margin-right: 5px;
}

.card {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    min-width: 250px;
    border: 1px solid black;
    width: 300px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.zoom {
    transition: transform .2s; 
}
  
.zoom:hover {
    transform: scale(1.25);
    z-index: 1;
}