html{
  background-image: url("../bg.jpg");
}
* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Tahoma, sans-serif;
  }
  #strona{
    min-height: 100%; 
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
    color: white;
}
  header {
    padding: 30px;
    text-align: center;
    font-size: 35px;
    color: white;
    border-radius: 20px 20px 20px 20px;
    border: solid 3px #00ff90;
    transition: 0.5s;
  }
  header:hover{
    box-shadow: 0px 0px 10px #00ff90;
    transition: 0.5s;
  }
  @keyframes heartbeat {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
  header h2{
    color: #eeeeee;
  }
  header h2 span{
    display: inline-block;
    animation: heartbeat 0.5s 2;
  }
  #header{
    transition: 0.5s;
    font-size: 90px;
    font-family: Tahoma, sans-serif;
    font-weight: 600;
  }
  /* Create two columns/boxes that floats next to each other */
  nav {
    float: left;
    width: 100%;
    padding: 20px;
  }
  nav h1{
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  }
  nav h1 a{
    color:#272727;
    font-weight: bold;
  }
  
  /* Style the list inside the menu */
  nav ul {
    list-style-type: none;
    padding: 5px;
  }
  nav ul li{
    padding: 10px;
    display: inline-block;
  }
  nav ul li a{
    color: #272727;
    font-weight: bold;
    background-color: #88A79A;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid #88A79A;
    text-decoration: none;
    transition: 0.5s;
    display: inline-block;
  }
  nav ul li a:hover{
    color: #00ff90;
    font-weight: bold;
    background-color: #272727;
    padding: 1vh;
    border-radius: 50px;
    border-color: #00ff90;
    text-decoration: none;
    transition: 0.5s;
    display: inline-block;
    box-shadow: 0px 0px 4px #00ff90;
  }
  section::after {
    content: "";
    display: table;
    clear: both;
  }
  footer {
    background-color: #00ff90;
    padding: 10px;
    text-align: center;
    color: #272727;
    font-weight: bold;
    border-radius: 20px 20px 20px 20px;
    position: fixed;
    left: 2px;
    right: 2px;
    bottom: 5px;
    width: 100%;
  }
  .hidden{
    display: none
  }
  
  /* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
  @media (max-width: 600px) {
    nav, article {
      width: 100%;
      height: auto;
    }
    header {
      background-color: transparent;
      padding: 30px;
      text-align: center;
      font-size: 35px;
      color: white;
      border-radius: 20px 20px 20px 20px;
    }
    header h2{
      color: #eeeeee;
    }
    article p{
      color: #eeeeee;
      font-size: 15px;
      text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
    }
    article p a{
      color: #00ff90;
      font-weight: bold;
    }
    #header{
      font-size: 50px;
    }
    
  }
  #titleh2{
    color: #00ff90;
    font-size: 75px;
    padding-bottom: 0px;
    text-shadow: 0px 0px 30px rgba(66, 68, 90, 1);
  }
  article p{
    color: #eeeeee;
    font-size: 25px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  }
  article p a{
    color: #00ff90;
    font-weight: bold;
  }
  * {
    scrollbar-width: auto;
    scrollbar-color: #00ff90;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 12px;
  }

  *::-webkit-scrollbar-track {
    background: #272727;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #00ff90;
    border-radius: 10px;
  }

.main_title{
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
}
#icons{
  width: fit-content;
  height: auto;
  padding: 20px;
  left: auto;
  right: auto;
  background-color: #272727;
  border-radius: 20px;
  transition: 0.5s;
}
#icons:hover{
  box-shadow: 0px 0px 6px #00ff90;
  transition: 0.5s;
  transform: scale(1.05);
}
img:hover{
  transform: scale(1.1);
  transition: 0.3s;
}
img{
  transition: 0.3s;
}