/****** tag selectors ****/
body {
    background-color: white;
    font-family: 'Open Sans', sans-serif;
}

header {
    border: 8px dotted #7FB77E;
    border-bottom-style: none;
    width: 10%;
}

footer {
    width:100%;
    height:30px;
    background-color: #FFC090;
    padding:10px;
}

img {
    width: 25%;
    height: 25%;
    padding-block: 15px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: white;
}

img:hover {
    background-color: #FFC090;
}

h1 {
    color: #ff9011;
    font-family: 'Lexend Deca', sans-serif;
}

h3 {
    color: #ffd45e;
}

p {
    color:#6d6eb4;
    
}

li {
    display:inline-block;
}

/****** class selectors ****/
/* same style for multiple items */
.framed {
    background-color: #FFC090;
}

.body-text {
    margin-left: 150px;
    font-size: 18px;
}

/* .container-padding {
    padding:40px;
} */

.content-container {
    max-width:700px;
    display:flex;
}

.content {
    flex: 2 2 auto;
}

/****** id selectors ****/
/* specific style for a single item */
#container {
    max-width:900px;
    margin:0 auto;
    padding: 40px;
}

#container a {
    /* for links in the container */
    color:#FFC090;
    font-weight:bold;
}

#header {
    width:100%;
    background-color: #7FB77E;
    height:150px;
    text-align: center;
    border: 2px dotted #7FB77E;
}

#navbar {
    height:40px;
    width:100%;
    background-color: #d9f0d8;
}

#navbar ul {
    /* for lists in the navigation bar */
    color:white;
    list-style-type: none;
    justify-content: space-evenly;
    overflow: auto;
    padding:5px;
}

#navbar li {
    /* for individual list items in navbar */
    padding:5px;
}

#navbar li a {
    /* for navigation links */
    color:#7FB77E;
    font-weight: 700;
    text-decoration:none;
}

#navbar li a:hover {
    /* for navigation links */
    color:#7FB77E;
    font-weight: 700;
    text-decoration:underline;
}

#sidebar {
    height:auto;
    background-color: #fff2c8;
    flex: 1 1 auto;
    color: #FFC090;
    padding: 10px;
}
