
@-webkit-keyframes cursor {
  0% {cursor: url(Images/Mouse/Mou_1.png), auto;}
  27% {cursor: url(Images/Mouse/Mou_2.png), auto;}
  54% {cursor: url(Images/Mouse/Mou_3.png), auto;}
  100% {cursor: url(Images/Mouse/Mou_4.png), auto;}
} 

@keyframes cursor {
   0% {cursor: url(Images/Mouse/Mou_1.png), auto;}
  27% {cursor: url(Images/Mouse/Mou_2.png), auto;}
  54% {cursor: url(Images/Mouse/Mou_3.png), auto;}
  100% {cursor: url(Images/Mouse/Mou_4.png), auto;}
}


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

html, body {
  min-width: 200px;
cursor: url(Images/Mouse/Mou_1.png), auto;
  -webkit-animation: cursor 650ms infinite;
  animation: cursor 650ms infinite;
}

body, input {
  font-size: 14px;
  font-family: 'Trebuchet MS', Sans-Serif;
  color: #000000;
}

body {
  background: #BFCADF;
  display: flex;
  flex-direction: column;
}

.top-section {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

.top-left,.top-right {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
  color: #0B3A26;
  text-shadow: -2px 2px 5px #5F6062;
}

.middle-section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  gap: 0.5rem;
}

.testpic  {
  width: 300px;
  height: 300px;
  filter: drop-shadow(#A3A8B5 -5px 4px 3px);
  align-items: center
}


@keyframes wobbleAnimation {
  0% { transform: translateX(0) rotate(0); }
  15% { transform: translateX(-25px) rotate(-5deg); }
  30% { transform: translateX(20px) rotate(3deg); }
  45% { transform: translateX(-15px) rotate(-3deg); }
  60% { transform: translateX(10px) rotate(2deg); }
  75% { transform: translateX(-5px) rotate(-1deg); }
  100% { transform: translateX(0) rotate(0); }
}

.testpic:hover {
  animation-name: wobbleAnimation;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}

.search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.search-input {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #0B3A26;
  gap: 1rem;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
}

.search-form label {
  display: none;
}

.search-form input {
  background-color: #BFCADF;
  width: 27rem;
  padding: 0.5rem;
  border: none;
  outline: none;
}

.search-form button {
  background-color: #0B3A26;
  border: 1px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  margin: 11px 4px;
  padding: 0 16px;
  height: 36px;
  min-width: 54px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}


.search-form button:hover {
  transform: scale(1.05);
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-family: Arial, Sans-Serif;
}


