/* ------ STYLES ------ */
html {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    background: #B7B5A9;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100% - 2rem);
}

body {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Klee One", cursive;
    font-weight: 600;
    font-style: normal;
    margin: 0 0 .5rem;
}

a {
    color: #AB7C00;
}

a:hover {
    text-decoration: none;
}

p {
    margin: 0 0 1.5rem;
}

strong {
    font-weight: 600;
}

main {
    max-width: 1024px;
    padding: 1.5rem 1.5rem 3rem;
    border-radius: 3rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 2rem;

    box-shadow:
        2.8px 2.8px 2.2px rgba(0, 0, 0, 0.006),
        6.7px 6.7px 5.3px rgba(0, 0, 0, 0.008),
        12.5px 12.5px 10px rgba(0, 0, 0, 0.01),
        22.3px 22.3px 17.9px rgba(0, 0, 0, 0.012),
        41.8px 41.8px 33.4px rgba(0, 0, 0, 0.014),
        100px 100px 80px rgba(0, 0, 0, 0.02);
}

.columns {
    display: grid;
    gap: 2rem 5rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.columns:not(:first-child) {
    border-top: 1px solid #878472;
    padding-top: 2rem;
}

.columns:last-child {
    grid-template-columns: 1fr;
}

article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

ul,
dl {
    margin: 0;
}

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

.address {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

dt {
    float: left;
    clear: both;
    margin-right: .25rem;
}

dd {
    margin: 0;
    float: left;
    margin-bottom: .5rem;
}

.button {
    display: flex;
    align-self: flex-start;
    justify-self: flex-start;
    padding: .75rem 1.25rem .75rem 1rem;
    background: #0866FF;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    align-items: center;
    gap: .75rem;
}

.hero {
    font-size: 1.25rem;
    max-width: 70ch;
}

.main-logo {
    width: auto;
    max-height: 8rem;
}

@media screen and (min-width: 780px) {
    .button {
        justify-self: flex-end;
    }
}