// css for the top most row - last updated 8/13/2024
// formatting - m.langford 8/13/2024

.logo {
    //	max-width: 350px; //20%;
    padding: 0px 0px 0px 1%;
}

.logo_section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border thin gray solid;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
}

.logo_holder {
    flex: 8 1;
}

.a_holder {
    flex: 2 1;
    min-width: 300px;
}	

.buttons {
    float: right;
    text-align: right;
}

.linksbar {
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding: 5px 5px; 50px; 50px;
    background-color: rgb(100, 149, 237);
    color: rgb(235, 235, 255);
    text-align: right;
    font-weight: bold;
}


.linksbar:last-child {
    text-align: left;
}

.linksbar_link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
}

.links_bar {
    display: flex;
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding: 10px 10px;
    background-color: rgb(100, 149, 237);
    color: rgb(235, 235, 255);
}

@media screen and (max-width: 600px) {

    .links_bar {
        grid-template-columns: 1fr;
    }

    .left_column {
        display: none;
    }

    .right_column {
        display: none;
    }

}

.gsearch {
    width: 70%;
}

.footer_links {
    list-style: none;
    text-align: center;
}

.footer_links li {
    display: inline;
    margin-left: 20px;
    margin-right: 20px;
}

.main-container {
    display: grid;
    grid-template-columns: 1fr 6fr 1fr;
    grid-gap: 30px;
    height: 80vh;
    margin: 10px 20px;
}

.info_row {
    display: flex;
    flex-wrap: wrap;
}

.card {		
}

.left_column {
    text-align: center;
}

.content {
//				text-align: center;
}

.right_column {

}	

.footer {
    grid-column: 1/9;
}


