:root{
    font-family: 'Source Code Pro', monospace;
    font-weight: normal;
    color: rgba(0,0,0,0.7);
    --purple: #733f72;
    --blue: #129099;
    --green: #9ba628;
    --yellow: #f0bf05;
    --red: #b72446;
}

@font-face {
  font-family: 'mk-glyphs';
  src: url('/fonts/mk-glyphsRegular.woff2') format('woff2'),
      url('/fonts/mk-glyphsRegular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

html, body{
    font-size: 14px;
    height: 100%;
    margin: 0;
}
.container{
    display: flex;
    flex-direction: column;
    height: 100%;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    background: radial-gradient(circle, var(--red) 15%, var(--purple) 100%);
}

* {
    box-sizing: border-box;
}

h1,h2,h3{
    font-weight: normal;
    margin: 0 0 .5rem 0;
}


h1{
    font-size: 1.4rem;
}
h2{
    font-size: 1.1rem;
    line-height: 1.2;
}

address, p{
    font-size: 1.1rem;
    margin: 0;
    font-style: normal;
    line-height: 1.6;
}
main{
    padding: 2.2em;
    width: 30em;
    height: 17.14em;
    background: url(/img/white-paper-texture.webp);
    background-size: cover;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.6);
    display: grid;
    grid-template-columns: 33% auto;
    grid-template-rows: auto auto auto 1fr;
    grid-column-gap: 2.2em;
    border-radius: .5em;
    text-shadow: -1px -1px rgba(0,0,0,0.15);
}

img#logo{
    grid-row: 1 / 5;
    width: 100%;
}


a {
    color: var(--blue);
    transition: .2s color;
    text-decoration: none;
}

a:hover{
    color: var(--purple);
    text-decoration: underline;
}

[class^=icon]{
  position: relative;
  //padding-left: 1.2em;
}

[class^=icon]::before{
    //margin-right: .2em;
    //margin-left: -1.2em;
    //font-size: 1.2em;
    font-family: 'mk-glyphs';
    //position: absolute;
    //top:0
}

.icon-email::before{
  content: 'a ';
  //top:-.075em
}

.icon-tel::before{
  content: 'b ';
  //top:-.075em
}
