* {
    text-align: center;
    color: #212121;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

body {
    background: lightgray;
    margin: 0;
    transition: margin-top 1000ms, width 600ms, background-color 600ms, box-shadow 200ms;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #f3f3f3;
    padding: 54px 0;
    border-radius: 0;
    transition-timing-function: ease-in-out;
    transition: margin-top 1000ms, width 600ms, background-color 300ms, box-shadow 200ms;
    box-shadow: 0 29px 119px rgba(0, 0, 0, 0.4), 0 14px 12px rgba(0, 0, 0, 0.22);
    margin-top: 50px;
}

@media screen and (min-width: 780px) {
    #container {
        width: 700px;
        margin-bottom: 50px;
        border-radius: 7px;
        transition-timing-function: ease-in-out;
        transition: margin-top 1000ms, width 600ms;
    }
}

@media screen and (max-width: 779px) {
    #container {
        box-shadow: none;
        transition: margin-top 1000ms, width 600ms, background-color 300ms, box-shadow 200ms;
    }

    body {
        background: #f3f3f3;
        transition: margin-top 1000ms, width 600ms, background-color 300ms, box-shadow 200ms;
    }
}

@media only screen and (min-height: 1750px) and (max-height: 1999px) {
    #container {
        margin-top: 400px;
    }
}

@media only screen and (min-height: 1500px) and (max-height: 1749px) {
    #container {
        margin-top: 400px;
    }
}

@media only screen and (min-height: 1000px) and (max-height: 1499px) {
    #container {
        margin-top: 200px;
    }
}

@media screen and (max-height: 999px) and (min-height: 500px) {
    #container {
        margin-top: 50px;
    }
}

@media screen and (min-height: 2000px) {
    #container {
        margin-top: 700px;
    }
}

#container .row:not(:first-child) {
    margin-top: 30px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item a {
    height: 64px;
    width: 64px;
}

hr {
    width: 100%;
    margin: 17px 0 0;
    border: 0;
    height: 1px;
    background: #333 linear-gradient(to right, #ccc, #333, #ccc);
}

h1 {
    font-size: 4em;
}


.item {
    margin: 0;
}

.attributes-row > .item {
    margin: 0 1rem;
    border: 0;
    border-radius: 12px;
    transition: transform .09s ease-in-out;
}

.attributes-row > .item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    max-width: 64px;
}

.icon {
    width: 4em;
    height: 4em;
    vertical-align: -0.125em;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .25rem .5rem; /* improves hit area */
    text-decoration: underline;
}

.external-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}