@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700&display=swap');


* {margin: 0;padding: 0;box-sizing: border-box;}

body {
  font-family: sans-serif;
  line-height: 1.6;
  font-size: 15px;
  color: #ffffff;
  background-color: rgb(0, 0, 0);
  padding: 40px 0;
  height: 100vh;
  font-family: 'Nunito', sans-serif;
}

.glass-container {
  width: 90%;
  margin: 0 auto;
  height: calc(100vh - 80px);
  border-radius: 10px;
  background: rgba(182, 182, 182, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 4;
  border-top: 1px solid rgba(255,255,255,0.5);
  border-left: 1px solid rgba(255,255,255,0.5);
}

.bg-2 {
  width: 300px;
  height: 300px;
  background-image: linear-gradient( 112deg, rgb(255, 0, 64) 21%,rgb(187, 11, 241) 93% );
  position: absolute;
  z-index: 1;
}

.bg-1 {
  top: 6.4%;
  left: 5%;
  border-radius: 20px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 200px;
  border-bottom-left-radius: 50px;
  width: 300px;
  height: 300px;
  background-image: linear-gradient( 112deg, rgb(195, 0, 255) 21%,rgb(92, 11, 241) 93% );
  position: absolute;
  z-index: 1;
}

.bg-2 {
  bottom: 7%;
  right: 5.5%;
  border-radius: 50%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Nunito', sans-serif;
  padding: 20px 5%;
}

.logo {
  font-size: 40px;
  font-weight: bold;
}

.logo span {
  color:rgb(255, 0, 119);
}

ul {
  list-style: none;
  display: flex;
}

ul li a {
  color: #cecece;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 20px;
  letter-spacing: 1;
  transition: all .2s;
}

ul li a:hover, .active {
  color: #ff0080;
}

.main {
  display: flex;
  justify-content: space-between;
  padding: 5% 0;
}

.inner-content {
  flex-basis: 50%;
  padding-left:  5%;
}

.inner-content h1 {
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}

.inner-content p {
  color: #959595;
  margin-bottom: 40px;
  
}

.btn {
  display: inline-block;
  color: #cecece;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #ff0080;
  box-shadow: 2px 2px 10px black;
  padding: 12px 40px;
  border-radius: 50px;
  transition: all .2s ease;
}

.btn:hover{
    transform: scale(1.2);
    background-color: #4c00ff;
}

@media screen and (max-width: 840px) {
  .inner-content {
    flex:1;
    padding: 0 5%;
  }
}