.page-title{
    text-align: center;
    color: whitesmoke;
}
.page-title > h1 {
    filter:drop-shadow(8px 8px 10px gray);
}

.content{
    display: grid;
    justify-items: center;
}
.col_container{
    /* display: grid; */
        columns: 2;
        margin: 2rem;
}

.col{
    display: grid;
    margin: 2rem;
}

.item{
    display: grid;
    margin: 0 0 .5rem 0;
    padding: .5rem;
    background-color: darkcyan;
    border-radius: .5rem;
    width: 20rem;
    break-inside: avoid-column;
}
/* .item:hover{
    margin: -.5rem 0rem;
    width: 21rem;
    padding: 1rem .5rem 1rem .5rem;
} */

.item_head{
    text-decoration: underline;
    font-size: larger;
}

.item_sub_head{
    margin: 1rem 0rem 0rem 1rem;
}
.item_body{
    margin-left: 2rem;
}

.item_body_line{
    margin-top: -.25rem;
}

.item_body_line > ul{
    margin-top: -0.25rem;
}

/* .item_body_line > ul {
    margin-top: .5rem;
} */

.item_body_line > ul > li > a{
    margin-top: .5rem;
    text-decoration: none;
    color: white
}

.space{
    height: .5rem;
}

.link-image{
    background-image: url(/images/logos/logo-faa.svg);
    background-repeat: no-repeat;
    background-size: 1%;
    margin-left: 5px;
}

@media only screen and (max-width: 600px) {
    .col_container{
        columns: 1;
    }
  }
