section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
}

article {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 50%;
    margin-top: 3rem;
    margin: 0.5%;
    background-color: #ccd7c9;
    border: 2px solid;
    border-color: black;
    border-radius: 10px;
    padding: 0.5rem;
}

header {
    display: flex;
    flex-direction: row;
}

nav {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: #4f506e;
    border: 2px solid black;
}

h1 { /*This and the next two are supposed to be for text color */
    color: black;
    
}

h2 {
    color: black;
    text-align: center;
}

p {
    color: black;
}

