html {
	font-size: 20px;
	line-height: 1.5em;
}

/* grid styles ------------------------------------ */
@media (min-width: 600px) {
    main {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
    }

    .info1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .info2 {
        grid-column: span 2;
    }

    .figure1 {
        grid-column: span 3;
        grid-row: span 2;
    }
    .figure6 {
        grid-column: span 2;
    }
    .figure7 {
        grid-column: span 3;
    }
}

svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

svg:not(:root) {
    overflow: hidden;
}

/* flex styles -------------------------------------- */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;

    color: white;
    width: 100%;
    height: auto;
}

.logo svg {
    width: 100%;
    height: auto;
}

/* generic styles ----------------------------------- */
body {
    max-width: 1600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.figure-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

figure {
    position: relative;
}

figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 1em 0.5em;
    color: white;
    width: 100%;
    font-size: 80%;
    text-align: right;
    background: -moz-linear-gradient(top, rgba(16,27,30,0) 0%, rgba(12,2,2,1) 90%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(16,27,30,0)), color-stop(90%,rgba(12,2,2,1)));
    background: -webkit-linear-gradient(top, rgba(16,27,30,0) 0%,rgba(12,2,2,1) 90%);
    background: -o-linear-gradient(top, rgba(16,27,30,0) 0%,rgba(12,2,2,1) 90%);
    background: -ms-linear-gradient(top, rgba(16,27,30,0) 0%,rgba(12,2,2,1) 90%);
    background: linear-gradient(to bottom, rgba(16,27,30,0) 0%,rgba(12,2,2,1) 90%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00101b1e', endColorstr='#0c0202',GradientType=0 );
}

.info1, .info2, .footer {
    padding: 1.5em;
    background-color: #412413;
}

.info1 *, .info2 *, .footer * {
	margin-bottom: 0;
}

.info1 * + *, .info2 * + *, .footer * + * {
	margin-top: 1.5em;
}

.info1 {
    color: #799D1A;
}

.info1 img {
    max-width: 100%;
    margin: 0 auto;
}

.info1 h1 {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px; width: 1px;
    margin: -1px; padding: 0; border: 0;
}

.info1 h2 {
    text-align: center;
}

.info2 {
    color: white;
}

h2 {
    font-size: 2em;
}

p {
}

.info-link {
    text-decoration: none;
    color: #ff9900;
}

.footer {
    color: white;
}
