html {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}
body {
    margin: 60px 0.5rem;
    background-color: #ffffff;
    color: #000;

    @media (max-width: 1000px) {
        margin: 6vw 0.5rem;
    }
}

.container {
    max-width: 900px;
    padding: 0 15px;
    margin: 0 auto;
}

#logo {
    display: block;
    width: 375px;
    height: auto;
    max-width: 80%;
    margin: 0 auto;
}

.sr-only {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 1rem 0;
    margin: 2.5rem 0 1.5rem;

    @media (max-width: 1000px) {
        font-size: calc(20px + 2.4vw);
        margin: 4vw 0 2.4vw; 
    }

    &:before {
        content: "";
        display: block;
        width: 3.75rem;
        height: 3px;
        background-color: #7ed321; /* green bar */
        margin-bottom: 1rem;
    }
}

.button {
    display: inline-block;
    background-color: #7ed321;
    color: #000;
    text-transform: uppercase;
    font-family: 'alternate-gothic-no-3-d', sans-serif;
    border: none;
    text-decoration: none;
    font-size: 1.375rem;
    border-radius: 5px;
    cursor: pointer;
    min-height: 3.125rem;
    padding: 1rem;
    box-sizing: border-box;

    @media (min-width: 420px) {
        padding: 1rem 3rem;
    }
}

a:focus {
    outline: 2px dashed currentColor;
    outline-offset: 2px;
}

.button:focus {
    outline-color: #7ed321;
}

.button:hover {
    background-color: #73e600;
}

.footer {
    margin-top: 3.75rem;
    padding-top: 3.75rem;
    border-top: 1px solid #ddd;
    line-height: 1.5;

    @media (max-width: 1000px) {
        margin-top: calc(1.75rem + 3.2vw);
        padding-top: calc(1.75rem + 3.2vw);
}

.blocktext--small {
    font-size: 1.375rem;
    font-family: 'alternate-gothic-no-3-d', sans-serif;
    text-transform: uppercase;
    line-height: 1;
}

.contact-info {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    column-gap: 3.75rem;
    margin-top: 1rem;
}

address {
    color: #444;
    font-style: normal;
}

.footer-link {
    color: #325bb1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;

    &:after {
        content: "";
        display: block;
        position: absolute;
        top: calc(50% + .625em);
        left: 1.375rem;
        width: 0%;
        border-bottom: 1px solid currentColor;
        transition: all 0.3s ease;
    }

    &:hover,
    &:active {
        &:after {
            width: calc(100% - 1.375rem);
        }
    }
}

.footer-link svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: currentColor;
    margin-top: 0.125rem;
}
