/* roboto-200 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/roboto-v47-latin-200.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/roboto-v47-latin-200.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* roboto-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v47-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/roboto-v47-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  
  /* roboto-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v47-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
         url('../fonts/roboto-v47-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
  }
  

:root{
    --color-accent-primary: #d95204;
    --color-accent-secondary: #8fb83b;
    --color-grey: #4d4d4d;
}

html, body {
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.46;
    color: var(--color-grey);
    padding: 0;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
}
h1,h2{
    color: var(--color-accent-primary);
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}
h1{
    font-size: 1.66rem;
    font-weight: bold;
}
img{
    max-width: 100%;
    height: auto;
}
.page{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    min-height: 100dvh;
}
.container{
    max-width: 866px;
    margin: 0 auto;
    width: 92%
}
main{
    flex: 1;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.content__image{
    max-width: 400px;
    margin: 0 auto;
}
footer{
    background-color: var(--color-grey);
    color: #fff;
    text-align: center;
    padding: 1rem 0 2rem;
    font-size: 0.93rem;
    font-weight: 200;
}
footer a{
    color: #fff;
    text-decoration: none;
}
footer a:hover, footer a:focus{
    text-decoration: underline;
}
.footerdecor{
    margin-bottom: 1rem;
}
.footertext__group{
    margin-bottom: 1rem;
}
.footertext__group:last-child{
    margin-bottom: 0;
}
.footertext__group span{
    display: block;
}

@media only screen and (min-width: 768px){
    footer {
        text-align: left;
        padding: 2rem 3rem;
    }
    footer .container{
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    .footerdecor,.footertext__group{
        margin-bottom: 0;
    }
    .footertext__group span{
        display: inline;
        white-space: nowrap;
    }
    .footertext__group span:after{
        content: ' | ';
        margin: 0 0.2rem;
    }
    .footertext__group span:last-child:after{
        display: none;
    }
    .footertext{
        padding-left: 2rem;
    }
}

@media only screen and (min-width: 768px){
    .content{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem
        
    }
}