.contact {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    
    align-items: center;
   
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
  }

  .contact .uvod {
    max-width: 1500px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    
  }

  .contact h1 {
    font-weight: bold;
    color: black;
   
    font-size: 35px;
    text-align: center;
    margin-top: 95px;
}

  .contact h3 {
    color:black;
   
    font-size: 19px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    text-decoration: underline;
    font-style: italic;
    
  }

  .contact p {
    color:black;
   
    font-size: 16px;
    text-align: center;

    margin-bottom: 10px;
    
  }
 
  .contact .buttny {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
  }

  .contact .buttny button {

    background-color: white;
      width: 300px;
      border-radius: 5px;
      cursor: pointer;
      box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);
      display: block;
      height: 50px;
      font-size: 17px;
      margin: 10px;
   
  }
  .contact .buttny button:hover {
      transition: 0.5s;
      box-shadow: none;
  }


  .contact .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
   
    flex-direction: row;
   
  }

  .contact .row .form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-items: center;
   
    flex-direction: row;
    width: 450px;
    margin-top: 20px;
   
  }

  .contact .row .form-container p {
    color: white;
    text-decoration: underline;
    text-align: center;
    font-style: italic;
    font-size: 13px;
  }
  
  .contact .row .form-container input,
  textarea {
    height: 4rem;
    width: 450px;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 2rem 1rem;
    margin: 10px 0;
    color: black;
    font-size: 15px;
    transition: 0.2s linear;
    border: 3px solid black;
  
  }
  
  .contact .row .form-container textarea {
    height: 20rem;
    border-radius: 10px;
    resize: none;
  }
  
  .contact .row .form-container input[type="submit"] {
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: 1.1s;
    border: 3px solid black;
    margin-bottom: 20px;
    padding-top: 0px;
    font-weight: bold;
  }

  .contact .row .form-container label {
    height: 45px;
    width: 450px;
    display: block;
    margin: 15px auto;
    background: white;
    border-radius: 10px;
    color: gray;
    cursor: pointer;
    font-size: 15px;
    border: 3px solid black;
    padding-top: 7px;
    padding-left: 10px;

  }

  .contact .row .form-container #choose-file, #choose-file1, #choose-file2 {
   display: none;
  }
  
  .contact .row .form-container input[type="submit"]:hover {
    background: red;
    border: 0.2rem solid var(--red);
    
  }
  

  
    @media (max-width: 600px) { 
      
      .contact .row .form-container input,
      textarea {
        display: flex;
        justify-items: center;
        align-items: center;
        width: 250px;
        font-size: 12px;
      }
      .contact .row .form-container label {
        width: 250px;
        padding-top: 11px;
        font-size: 12px;
      }

      .contact .row .form-container input[type="submit"]{
        width: 250px;
        font-size: 15px;
      }
      .contact .row .form-container{
        width: 250px;
      }

          .contact .icons {
            padding: 12px;
          }
          .contact .icons a {
            padding: 5px;
          }
            
          .contact h1{
            font-size: 25px;
           
            padding-right:5px ;
            padding-left:5px ;
        }
        .contact h3{
            font-size: 15px;
            padding: 10px 10px;
        }
        .contact .row .form-container p{
          font-size: 11px;
        }

        .contact .buttny button {
          width: 250px;
          font-size: 15px;
        }
    }

    @media (max-width: 370px) { 
      .contact .row .image img{
        height: 240px;
        width: 240px;
      } 
   
}
 
@keyframes fromTop{
  0%{
    opacity: 0;
    transform: translateY(-50px);
}

  100%{
    opacity: 1;
    transform: translateY(0px);
}
}

@keyframes fromLeft{
  0%{
    opacity: 0;
    transform: translateX(-50px);
}

  100%{
    opacity: 1;
    transform: translateX(0px);
}
}

   