/*Author:         Toby Goetz*/
/*Date:           11/5/22*/
/*File Name:      styles.css*/
/*Description:    Stylesheet for show_data.html*/


/* layout logic */
body {
    display: grid;
    width: 900px;
    margin: auto;
    grid-template-columns: 1fr 1fr;
    background-color: #6EA4BF;
}

/* your styles go here... */

h1 {
    background-color: #278d80;
    color: white;
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
    align-content: center;
    border: 3px solid black;

}

p {
    background-color: #278d80;
    color: white;
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
    border: 3px solid black;
}

div {
    background-color: #278d80;
    padding: 10px 10px 10px 10px;
    border-radius: 10px;
    border: 3px solid black;
}

section {
    padding: 5px 5px 0 5px;

}

label {
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
}

span {
    display: block;
    margin: 5px 0 20px 0;
    padding: 5px 10px 5px 20px;
    background-color: white;
    font-weight: 700;
    border-radius: 5px;
    border: 1px solid black;

}

button {
    border-radius: 5px;
    padding: 5px 5px 5px 5px;
    border: 2px solid black;

}

aside {
    background-color: lightskyblue;
    margin: 25px 20px 0 20px;
    border-radius: 10px;
    border: 3px solid black;


}
h2 {
    margin: 10px 20px 20px 20px;
}

li {
    margin: 15px 25px 15px 0;
}

img {
    height: 450px;
    position: relative;
    margin: 10px 10px 10px 40px;
    border: 3px solid black;
    border-radius: 10px;
}
