body {
  background-color: #000;
  color: white;
  background-image: radial-gradient(75% 100% at 50% 0,rgba(56,189,248,.3) 0,rgba(56,189,248,0) 75%);
  background-repeat: no-repeat;
  font-family: Arial, sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
}

button {
  cursor: pointer;
}

.hero > * {
  text-align: left;
  margin: 1vw 1vw 1vw 6vw;
  padding: 0px;
}

.hero h2 {
  font-weight: 100;
  white-space: normal;
  max-width: 700px;
}

.container {
  display: flex;
  flex-direction: column; /* Align items vertically */
  align-items: start; /* Align child elements based on the reference element */
}

.wrapped-element {
  flex-grow: 1; /* Make h2 element match the width of the reference element */
}


.skills > * {
  text-align: left;
  margin: 1vw 1vw 1vw 6vw;
  padding: 0px;
}

.skills > h2 {
  font-size: 4vw;
}

h1 {
  font-size: 10vw;
}

.gradiented {
  background: linear-gradient(to right, #00c9ff, #92fe9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h4 {
  text-align: left;
  font-size: 13vw;
  /* margin: 1vw 1vw 1vw 6vw; */
  color: white;
}
@media screen and (min-width: 1200px) {
  h1 {
   font-size: 100px;
  }
  .skills > h2 {
    font-size: 40px;
  }
  
}



.topnav {
  overflow: hidden;
  background-color: #000;
  
  background: 
  linear-gradient(#000 0 0) padding-box, /*this is your black background*/
  linear-gradient(to right, #00c9ff, #92fe9d) border-box;
border: 1px solid transparent;
border-radius: 20px;
margin: 0px 5px;
}

.topnav #navbranding {
  background: linear-gradient(to right, #00c9ff, #92fe9d);
  background-size: 100vw;
  color: black;
  padding: auto;
  border-radius: 20px;
  text-shadow: none;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 17px;
  transition: text-shadow 0.3s;
}

.topnav a:hover {
  cursor: pointer;
  text-shadow: 0 0 10px #92fe9d, 0 0 20px #fff, 0 0 30px #00c9ff, 0 0 40px #00c9ff, 0 0 50px #00c9ff, 0 0 60px #92fe9d, 0 0 70px #92fe9d;
}


.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
