* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
body::before {
    content: '';
    position: absolute;
    top: 39px;
    left: -150px;
    width: 333px;
    height: 331px;
    background-color: rgba(30, 131, 255, 0.29);
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
}
body::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 333px;
    height: 331px;
    background-color: rgba(30, 131, 255, 0.29);
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
}


a {
  text-decoration: none;
  color: inherit;
  font-weight: 600;
  font-size: 16px;
}
.text{
font-weight: 600;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;

}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  border-bottom: 1px solid #eee;
}
.logo{
  width: 54px;
  height: 54px;
}
.logo img {
  height: 100%;
}
nav ul{
  display: flex;
  gap: 50px;
  align-items: center;
}


.coming-soon-btn {
  padding: 8px 15px;
  background: #e6f0ff;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  width: 221px;
  height: 54px;
  color: #005FD3;

}
.soon{
  display: flex;
  align-items: center;
  gap: 12px;
}
.launch-container {
  display: flex;
    width: 100%;
    padding: 0 100px;
    align-items: center;
    gap: 280px;
    background-image: url(../images/Style5.png);
    background-size: contain;
    background-position: center;

}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.about-container {
  max-width: 1000px;
  padding: 40px;
  text-align: center;
}

.content-wrapper h1 {
  font-size: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

.content-wrapper h1 span {
  color: #1d4ed8;
}

.description {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
}

.link-style a {
  display: block;
  color: #1d4ed8;
  font-size: 16px;
  line-height: 1.7;
  text-decoration: underline;
}
