/* global */
@import url('https://fonts.googleapis.com/css?family=Roboto');

.grid-2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    flex: 1;
    min-height: 0;
    align-items: center;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #101214;
    color: #b0a697;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h2,.white{
    color: #fff;
}

a{
    color: #b0a697;
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover{
    color: #fff;
}
/* section 1 */
.section-1{
    padding-top: 0;
    text-align: center;
}

.section-1 p{
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin:0;
}

.section-1 h2{
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-1 a{
    font-size: 1.5rem;
    padding: 10px;
}

.link-groups{
    margin-top: 1.75rem;
}

.link-group{
    margin-top: 1.1rem;
}

.link-group:first-child{
    margin-top: 0;
}

.section-1 .link-group-title{
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 0.3rem;
}

.section-1 .link-group a{
    display: inline-block;
    font-size: 0.95rem;
    padding: 0;
}
/* section 2 */
.section-2{
    padding-top: 0;
    width: 70%;
}

.section-2 h2{
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-2 p{
    font-size: 1.1rem;
    padding-bottom: 10px;
    margin:0;
}

.section-2 a{
    display: inline;
    padding: 0;
    font-size: inherit;
}
.site-footer{
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.filing-record{
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    line-height: 1.2;
    white-space: nowrap;
}

.filing-record img{
    width: auto;
    height: 1.1em;
}

/* media queres */
@media(max-width:780px){
    .grid-2{
        grid-template-columns: 1fr;
        align-content: center;
        gap: 1.5rem;
    }
    .section-1{
        padding:0;
    }
    .section-2{
        padding: 0;
        width: calc(100% - 3rem);
        margin: 0 auto;
    }
    .section-1 h2,
    .section-2 h2{
        font-size: 1.45rem;
    }
    .section-1 p,
    .section-2 p{
        font-size: 1rem;
    }
    .section-1 a{
        font-size: 1.35rem;
    }
    .link-groups{
        margin-top: 1.25rem;
    }
    .link-group{
        margin-top: 0.9rem;
    }
    .section-1 .link-group a{
        font-size: 0.9rem;
    }
}
