body, html {
    height: 100%;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: black;
    color: rgb(48, 243, 243);
    box-shadow: 0 4px 8px 0 ;
  }
  
  header h1 {
    font-size: 36px;
    color: white;
    font-weight: bold;
    margin: 0;
  }
  
  header nav a {
    margin-right: 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  
  main {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: 0px;
    color: black;
    padding: 20px;
    border-radius: 25px;
  }
  
  section img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  section p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  section a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  footer {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100px;
    background-color: black;
    color: white;
    box-shadow: 0 -5px 10px  rgba(0, 0, 0, 0.2);
    position: bottom;
    width: 100%;
  }
  
  footer p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }
  img {
    border-radius: 25px;
  }
  
  textarea {
    width: 45%;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
    height: 170px;
  }


.smallsection{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: 60%;
    margin: 50px;
    color: black;
    padding: 20px;
    border-radius: 25px;
}

.smallmain{
    display: flex;
    justify-content: center;
     align-items: center;
    height: 500px;
}

.smallsmallmain{
    display: flex;
    justify-content: center;
     align-items: center;
    height: 788px;
}

.noborder{
    border-style: none; 
    border-color: Transparent; 
    overflow: auto;
    color: black;
    background-color: white;   
}
  
  .button1 {
    background-color: black; 
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }

  .section-title{
    text-align: center;
  }

  .Current-project{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .Contact-me{
    display: flex;
    justify-content: center;
    align-items: center;
  }


.invisible-section{
  display: none;
}

.button1:hover {
  animation: hover-x-1 0.5s forwards;
}

.button1:not(:hover) {
  animation: nothover-x-1 0.5s forwards;
}

@keyframes hover-x-1 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes nothover-x-1 {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}