@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
   font-family: 'Raleway'; 
  margin: 0;
  padding: 0;
  font-family: Raleway;
}

a {
  color: black;
  text-decoration: none;
}


/* START OF HEADER */
header {
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    z-index: 9999;
    top: 0;
    position: fixed;
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    display: grid;
    grid-template-columns: minmax(10rem, 1fr) repeat(
        7,
        minmax(min-content, 16rem)
      ) minmax(10rem, 1fr);
    grid-gap: 2rem;
    z-index: 100;
    padding-left: 4rem;
    padding-right: 4rem;
    align-items: center;
    justify-content: center;
    background-color: #2fa8d2;
  }
  
  nav {
    grid-column: 7 / 10;
    grid-row: 1 / 2;
  }
  
  .nav-list {
    margin: 0px -40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
  }
  
  .nav-item {
    list-style: none;
  }
  
  
  
  .nav-link {
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: Raleway;
  }
  
  .nav-item .current {
  font-weight: 900;
  }
  .nav-link:hover {
      font-weight: 900;
      }
  
  
  .logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    padding: 1rem;
    padding-left: 3rem;
  }
  
  .logo img {
    width: 15rem;
    height: auto;
  }
  
  /* END OF HEADER */

.Kontakt-wrapper {
  padding-top: 2rem;
}
  .form-text p{
    text-align: center;
  }


form {
    padding-top: 2rem;
  }
  
  .form-title {
      color: #2fa8d2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    font-size: 2rem;
    font-weight: bold;
  }
  form p {
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-link {
    color: #2fa8d2;
    font-weight: bold;
  }
  
  .row {
    display: flex;
    justify-content: space-around;
    margin: 0px 6rem 0px 6rem;
  }
  
  input[type="text"] {
    appearance: none;
    width: 100%;
    margin: 0.8rem;
    height: 2rem;
    padding: 0.5rem 1rem;
    outline: none;
    border: none;
    background: #e8ebed;
    color: #687072;
  }
  
  input[type="email"] {
    appearance: none;
    width: 100%;
    margin: 0.8rem;
    height: 2rem;
    padding: 0.5rem 1rem;
    outline: none;
    border: none;
    background: #e8ebed;
    color: #687072;
  }
  
  #textarea {
    content: Besked;
    width: 100%;
    margin: 0.8rem;
    height: 7rem;
    padding: 0.5rem 1rem;
    outline: none;
    border: none;
    background: #e8ebed;
    color: #687072;
  }

.submit{
  background-color: #2fa8d2;
  align-items: center;
  margin: 0 45%;
  width: 10%;
  align-content: center;
  height: 2rem;
  outline: none;
  border: none;
  color: white;
}


  .space {
    padding-bottom: 6rem;
  }
  

/* FOOTER START */

footer {
    background-color: #2fa8d2;
    grid-column: 1 / -1;
    grid-row: 4 / 5;
    display: flex;
    justify-content: space-around;
    padding-top: 5rem;
  }
  
  .footer-wrapper h3 {
    font-size: 2.5rem;
    color: white;
  }
  
  .footer-nav li {
    list-style: none;
    margin: 1rem 0;
  }
  
  .footer-nav li a {
    color: black;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer-nav li a:hover {
    color: #8c8c8c;
  }
  
  .under-footer{
      padding-bottom: 2rem;
  }
  .under-footer p{
      font-weight: bold;
  }
  /* STOP AF FOOTER CSS */
  