/*Desktop version*/
@media only screen and (min-width: 767px) {

  h2 {
    color: #c4c7c8;
    font-size: 22px;
    font-family: Amiko;
    letter-spacing: 5px;
  }

  html, body {
    box-sizing: border-box;
    /*background-color: rgb(5, 5, 5);*/
    background : #0d1117;
    color: #c4c7c8;
    font-family: Lora;
    height: 100%;
    padding: 15px;
    margin: 0px;
  }

  .grid-container {
    height: 100%;
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 40px 40px auto 200px auto auto;
    grid-template-areas: 
      "h h h h h h h h h h h h"
      "s s s s s s s s s s s s"
      ". . . v v v v v v . . ."
      ". . m m m m m m m m . ."
      ". . . c c c c c c . . ."
      "f f f f f f f f f f f f";
  }

  .grid-container > div {
    display: flex;
  }

  .header {
    grid-area: h;
    justify-content: center;
  }

  .header > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .slogan{
    grid-area: s;
    font-family: Heebo;
    justify-content: center;
    align-items: center;
    object-position: center;
  }

  /* Verksamhetsbeskrivning */
  .v-beskrivning {
    grid-area: v;
    flex-direction: column;
    padding: 10px;
    border-radius: 3px;
    font-family: Montserrat;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    text-align: justify;
  }
  
  .avslut{
      text-align: center;
  }

  .messenger {
    grid-area: m;
    flex-direction: column;
    padding: 10px;
    font-family: Montserrat;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    justify-items: center;
  }
  .contact-form{
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea,
  .contact-form button{
    border: 1px solid;
    border-radius: 0px;
    background: whitesmoke;
    color : black;
    font-size: 15px;
  }

  .contact-msg{
    resize: none;
    height: 70px;
    width: auto;
  }
  
  .OK-Sent{
    padding: 39px;
    line-height: 25px;
    text-align: center;
  }

  .contact-footer{
    grid-area: c;
    padding: 15px;
    flex-direction: row;
    justify-content: space-between;
    justify-items: stretch;
    align-items: stretch;
    font-weight: normal;
    font-family: Montserrat;
    font-size: 13px;
    color: #8b949e;
  }
  .contact-footer-left {
    text-align: left;
  }
  .contact-footer-right {
    text-align: right;
  }

  .footer {
    grid-area: f;
    padding: 20px;
    justify-content: center;
    align-items: center;
    font-family: Montserrat;
    font-size: 11px;
    color: #8b949e;
  }
}