* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #252525;
    color: white;
    display: flex;
    flex-direction: column;
}

nav {
  background-color: #00A3FF;
  display: flex;
  justify-content: center;
  border-radius: 3rem;
  margin-top: 2.5%;
}

nav a {
  display: inline-block;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 3rem;
  transition: background-color 0.3s ease;
}

nav a:not(:last-child) {
  margin-right: 1rem;
}

nav a:hover {
  background-color: #0085FF;
  transition: background-color 0.3s ease;
}

.main-nav {
  background-color: #00A3FF;
  display: flex;
  justify-content: center;
  border-radius: 3rem;
  margin-top: 2.5%;
}

.main-nav a {
  display: inline-block;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border-radius: 3rem;
  transition: background-color 0.3s ease;
}

.main-nav a:not(:last-child) {
  margin-right: 1rem;
}

.main-nav a:hover {
  background-color: #0085FF;
  transition: background-color 0.3s ease;
}

.search-container {
  background-color: #333;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5%;
  border-radius: 100px;
}

.search-container input[type="text"] {
  border-radius: 3rem;
  border: none;
  background-color: #ffffff;
  width: 20rem;
  height: 2rem;
  text-indent: 10px;
  font-family: 'Poppins', sans-serif;
}

.search-container input[type="text"]::placeholder {
  text-indent: 10px;
  font-family: 'Poppins', sans-serif;
  border: none;
}



.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.search-container ul {
  display: flex;
  flex-wrap: wrap;
}
.search-container ul li {
  flex: 0 0 auto;
}


.container1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}


h1 {
    font-size: 4rem;
    margin: 2rem 0;
    margin: -2.5%;
}

p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.button {
    display: inline-block;
    font-size: 1.5rem;
    padding: 1.5rem 5rem;
    border-radius: 3rem;
    background-color: #00A3FF;
    color: white;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: background-color 0.3s ease;
    animation: shrink 0.3s ease;
}

.button:hover {
    background-color: #0085FF;
    transform: scale(1.2);
    animation: grow 0.3s ease;
    transform-origin: center;
}

.button1 {
    display: inline-block;
    font-size: 1.5rem;
    padding: 0.75rem 2.5rem;
    border-radius: 3rem;
    background-color: #00A3FF;
    color: white;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: background-color 0.3s ease;
}

.button1:hover {
    background-color: #0085FF;
}

.button {
  /* Your button styles */
  position: relative;
  overflow: hidden;
}

.button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: #fff;
  opacity: 0.6;
  border-radius: 100%;
  z-index: -1;
}

.button:active:before {
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
  }
  50% {
    width: 300px;
    height: 300px;
  }
  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}


@keyframes grow {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes shrink {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.icon {
    margin-right: 1rem;
}

.react {
    margin: 4rem 0;
}

.react h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.react p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.react .button {
    display: inline-block;
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    background-color: #61dafb;
    color: white;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: background-color 0.3s ease;
}

.react .button:hover {
    background-color: #45c6d5;
}

.about {
    font-size: 1.5rem;
    margin-top: 2rem;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    font-size: 1.5rem;
    margin: 0;
}

