body {
  background-color: white;
}
.welcome {
  background: rgb(247, 251, 255);
  background: linear-gradient(
    180deg,
    rgba(247, 251, 255, 1) 0%,
    rgb(167, 210, 252) 73%,
    rgb(180, 218, 245) 100%
  );
}
.svg {
  aspect-ratio: 900/100;
  overflow: hidden;
  background-image: url("./img/wave.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  position: absolute;
  bottom: 0px;
  left: 0;
  height: auto;
  width: 100%;
}
.svg2 {
  aspect-ratio: 900/40;
  overflow: hidden;
  background-image: url("./img/wave2.svg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: transparent;
  height: auto;
  width: 100%;
}
.welcome-about {
  background: linear-gradient(
    180deg,
    rgba(247, 251, 255, 1) 0%,
    rgb(198, 227, 255) 73%,
    rgb(202, 223, 238) 100%
  );
  clip-path: polygon(0 1%, 100% 0, 100% 100%, 0 74%);
}
@media screen and (max-width: 600px) {
  .svg {
    aspect-ratio: 900/80;
  }
  nav {
    overflow-x: scroll;
  }
  .welcome-about {
    background: linear-gradient(
      180deg,
      rgba(247, 251, 255, 1) 0%,
      rgb(198, 227, 255) 73%,
      rgb(202, 223, 238) 100%
    );
    clip-path: polygon(0 1%, 100% 0, 100% 100%, 0 92%);
  }
}
/* ==== contact page css  */
.copy {
  border: 2px dashed black;
  text-transform: capitalize;
  border-radius: 3px;
  background-color: white;
  color: black;
  margin: 8px 0;
  font-weight: 700;
  text-align: center;
  transition: 0.2s;
}
.copy:active {
  transform: scale(0.9);
}
fieldset {
  display: flex;
  flex-direction: column;
  padding: 5px 0px;
}
fieldset label {
  font-size: 17px;
}
fieldset input {
  padding: 6px 5px;
  border-radius: 5px;
}
fieldset input:focus {
  background-color: aliceblue;
}

.nt {
  background-image: url("./img/nt.png");
  background-size: 5%;
}
.of {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.of a{
  color:blue;
  text-decoration: underline;
  font-weight: 800;
}
