body {
    margin: 0;
    font-family: Arial, Arial, Helvetica, sans-serif, sans-serif;
}

p {
    margin-left: 10px;
    margin-right: 10px;
    text-indent: 40px;
}

h2 {
    margin-left: 20px;
    margin-right: 20px;
}
/* Background Color to the Top Navigation Bar.*/
.topNav {
    position: fixed;
    top: 0%;
    width: 100%;
    background-color: #333;
    overflow: hidden;
}
/* Style of the links inside the Navigation Bar.*/
.topNav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
/* Style of the links when the mouse is hovering over.*/
.topNav a:hover {
    background-color: #ddd;
    color: black;
}
/* Style of the links when they are the active tab.*/
.topNav a.active {
    background-color: #04AA6D;
    color: white;
}

.contentPage{
    margin-top: 45px;
}

.contentTab.active {
    display: block;
}

.contentTab {
    display: none;
}

.aboutContent {
    background-color: lightgrey;
    border-left: 10px solid lightgrey;
    border-right: 10px solid lightgrey;
    border-bottom: 10px solid lightgrey;
    border-top: 1px solid lightgrey;
    border-radius: 10px;
    display: flex;
    border-radius: 5px;
}

.aboutContent img {
    width: 18%;
    margin: 1% 1% 1% 1%;
    border-radius: 10px;
}
.contactContent {
    background-color: lightgrey;
    border-left: 10px solid lightgrey;
    border-right: 10px solid lightgrey;
    border-bottom: 10px solid lightgrey;
    border-top: 1px solid lightgrey;
    border-radius: 10px;
    margin: 20px;
    min-width: 500px;
    width: 20%;
}
.contactContent a {
    margin-left: 50px;
    margin-right: 10px;
    text-indent: 40px;
}

/* Flex container - To hold multiple elements adjacent to one another. */
.projectCard {
    display: flex;
    background-color: rgb(110,110,255);
    align-items: center;
    color: white;
    border-radius: 5px 30px 50px 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content:space-between;
}

.projectCard img {
    max-width: 300px;
    margin: 1% 1% 1% 1%;
    border-radius: 20px;
}

.projectCard a:link {
    color: rgb(215, 175, 255);
}

.projectCard a:visited {
    color: rgb(15, 225, 225);
}

.projectCard a:active {
    color: rgb(255, 255, 0);
}

.floatRight {
    float: right;
}

.floatLeft {
    float: left;
}

.projectCard text {
    min-width: 85%;
    margin: 1% 1% 1% 1%;
}

.projectCard h2 {
    margin-left: 2.5%;
}

/* Makes the legend appear part of the card, and makes it rounded to look nice. */
.projectCard legend{
    background-color:inherit;
    padding: 5px;
    border-radius: 5px;
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    max-width: 60rem;
}

.wrapper img {
    min-width: 200px;
}

.textSize32 {
    font-size: 32px;
    font-weight: 200;
}

@media (max-width: 66rem){
    .projectCard{
        margin: 20px!important;
    }
}