/* CSS Resets */
h1, h2, h3, h4, p, nav ul {
    padding: 0;
    margin: 0;
}
nav ul {
    list-style-type: none;
}
img { max-width: 100%; display: block; }
* { box-sizing: border-box;}

/* end Resets */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
}
nav {
    border-top: 2px solid #333;
}
nav ul li a {
    text-decoration: none;
    display: block;
    color:cornflowerblue;
    font-weight: bold;
    border-bottom: 2px solid #333;
    text-align: center;
    padding: 10px;

}

header, footer {
    background-color: rgb(235, 235, 235);
}

header, section, footer {
    padding: 20px;
}

section:nth-child(even){
    background-color: aliceblue;
}

.container {
    max-width: 1000px;
}

h1, h2 {
    margin-bottom: .5em;
}

p {
    line-height: 1.4em;
    margin-bottom: 1em;
}

ol li {
    margin-bottom: 1em;
}

img {
    margin-bottom: 20px;
}
#mindMap {

}
#screen1 {
    width: 400px;
    float: right;
}
#screen2 {
    width: 400px;
    clear: left;

}
#storyboards {
    width: 438px;
    display: block;
}
#storyboard2 {
    width: 800px;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
}
#storyboard1 {
    width: 800px;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
}
#fundraiserOptions {
    width: 300px;
    float: left;
}
#taskItems {
    display: block;
}


#addFunds {
    width: 300px;
    float: left;
}
#fundsAdded {
    width: 300px;
}
#task {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}
.laterDevImages {
    width: 376px;
    float: none;
    display: inline;
}
#taskItems {
    width: 300px;
    display: inline;
}
#taskItems img {
    display: inline;
    width: 306px;
    height: auto;
}


.moreDevImages {
    width: 300px;
    display: inline-block;
}













@media only screen and (min-width: 768px) {
    nav ul {
    display: flex;
}
    nav ul li { flex: 1; }
}

@media only screen and (min-width: 1000px) {
    .container{ margin: auto; }
    nav ul {
        max-width: 1000px;
        margin: auto;
    }
    .content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    }
#overview {
    display: grid;
}

.contentCol {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

}
