.head1 {
  font-size: 4rem;
}
.head2{
  font-size: 4rem;
  padding-top: 20px;

}
p {
  font-size: 1.2rem;
  text-align: center;
  margin-right: 30px;
  margin-left: 30px;

}
body {
  margin: 0;
  font-family: 'Prompt', sans-serif;
  color: white;
  background: #0f0f10;
  overflow-x: hidden;
}

section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
  padding-top: 50px;
  padding-bottom: 80px;
}

.blue {
  background: #dd3f31;
}

.red {
  background: #202731;
}

.pink {
  background: #ff0066;
  overflow: hidden;
}

.curve {
  position: absolute;
  height: 250px;
  width: 100%;
  bottom: 0;
  text-align: center;
}

.curve::before {
  content: '';
  display: block;
  position: absolute;
  border-radius: 100% 50%;
  width: 55%;
  height: 100%;
  transform: translate(85%, 60%);
  background-color: #0f0f10;
}

.curve::after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 100% 50%;
  width: 55%;
  height: 100%;
  background-color: #dd3f31;
  transform: translate(-4%, 40%);
  z-index: -1;
}

.bubble::after {
  content: '';
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
  background-color: #0f0f10;
  height: 85%;
}


.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave svg {
  position: relative;
  display: block;
  width: calc(103% + 1.3px);
  height: 262px;
}

.wave .shape-fill {
  fill: hsl(240, 3%, 6%);
}

.spacer {
  aspect-ratio: 960/300;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.layer1 {
  background-image: url('./layer1.svg');
}
.layer2 {
  background-image: url('./layer2.svg');
}

.flip {
  transform: rotate(180deg);
}



.blob-motion {
  position: absolute;
  transform: translateY(-20%);
  z-index: 0;
}

.blob-content {
  z-index: 1;
}

.blobs {
  width: 100%;
  background: url('./blob1.svg') no-repeat bottom / cover;
}

.container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.container a{
  width: 400px;
  height: 300px;
  border: 2px soild #ffffff;
  cursor: pointer;
  margin: 10px;
  transition: 400ms;
  padding-right: 50px;
}

.container a:hover{
  filter: grayscale(1);
  transform: scale(1.03);
}
.dev{
  font-size: 2rem;
  padding-top: 20px;
}