@charset "UTF-8";
/* CSS Document */

<style > * {
    box-sizing: border-box;
}

input[type=text], select, textarea {
    width: 20%;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 4px 4px 4px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}

select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
}

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

/* Style the header */

header {
    background-color: #696;
    padding: 5px;
    text-align: center;
    font-size: 15px;
    color: white;
}

/* Container for flexboxes */

section {
    display: -webkit-flex;
    display: flex;
}

/* Style the navigation menu */

nav {
    background: #44c;
    padding: 10px;
    column-width: 100px;
}

/* Style the list inside the menu */

nav ul {
    list-style-type: none;
    padding: 0;
}

/* Style the content */

article {
    -webkit-flex: 3;
    -ms-flex: 3;
    flex: 3;
    background-color: #f1f1f1;
    padding: 10px;
}

/* Style the footer */

footer {
    background-color: #777;
    padding: 5px;
    text-align: center;
    color: white;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */

@media (max-width: 600px) {
    nav,
    article {
        width: 60px;
        height: auto;
    }
    .col-25,
    .col-75,
    input[type=submit] {
        width: 100%;
        margin-top: 0;
    }

}

.cardContainer {
    display: grid;
    grid-template-columns: 50px 100px auto auto auto auto auto 50px;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-gap: 10px;
    background-color: #2196F3;
    padding: 10px;
}

.cardContainer > div {
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
}

.cardIndex {
    grid-area: 1/1/2/2;
}

.cardName {
    grid-area: 1/2/1/8;
}

.cardImage {
    grid-area: 2/1/8/6;
}

.CardState {
    grid-area: 1/8/1/9;
}

.cardBio {
    grid-area: 2/6/4/9;
}

.cardURL {
    grid-area: 7/6/7/9;
}

.cardEmail {
    grid-area: 8/6/8/9;
}

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

</style >
