@font-face {
    font-family: 'Montserrat';
    src: url('../webfonts/Montserrat-Bold.woff2') format('woff2'),
        url('../webfonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../webfonts/Montserrat-Italic.woff2') format('woff2'),
        url('../webfonts/Montserrat-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../webfonts/Montserrat-Regular.woff2') format('woff2'),
        url('../webfonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
    color: #393a5c;
}
a:hover {
    color: #328b70;
}
body {
  font-family: 'Montserrat', sans-serif;
    color: #434343;
}
main {
    display: grid;
    min-height: calc(100dvh - 100px);
    place-content: center;
    padding: 20px;
}
.container {
    max-width: 900px;
}
h1 span {
    font-size: 0;
    line-height: 0;
    color: transparent;
}
h1 img {
    display: block;
    margin: 0 auto 20px;
}
.subtitle {
    font-size: 23px;
    line-height: 30px;
    font-weight: bold;
    max-width: 600px;
    text-align: center;
    margin: 0 auto 50px;
}
.construction {
    font-size: 30px;
    line-height: 30px;
    max-width: 600px;
    text-align: center;
    margin: 0 auto 50px;
    text-transform: uppercase;
}
p {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 26px
}
.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 0 20px 20px;
    img {
        max-width: 360px;
        width: 100%;
        height: auto;
        display: block;
    }
    .right {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: flex-end;
    }
    i {
        font-size: 30px;
    }
    @media (width<600px) {
      img {
        margin: 0 auto 20px;
      }
      .right {
        justify-content: center;
      }
    }
    a {
        text-decoration: none;
    }
}