body {
    background-color: #000; 
    font-family: 'Helvetica', sans-serif;
    font-style: oblique;
    color: rgb(0, 251, 80);
}

  /* Hamburger button */
  .hamburger {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: rgb(0, 251, 80);
    margin: 4px 0;
    transition: 0.3s ease;
  }

  /* Animate to X */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Menu */
  .menu {
    position: fixed;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100%;
    background: #000;
    color: rgb(0, 251, 80);
    padding-top: 60px;
    transition: 0.3s ease;
    z-index: 1000;
  }

  .menu.active {
    right: 0;
  }

  .menu a {
    display: block;
    padding: 14px 20px;
    color: rgb(0, 251, 80);
    text-decoration: none;
  }

  .menu a:hover {
    background: #333;
  }

main {
	position: static;
	display: flex;
    flex-direction: row;
    width: 75vw;
    height: 50%;
   /* border: 2px solid #000;*/
    margin: auto;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.subs-head {
    height: 20%;
    width: 40%;
}

.container1 {
    position: static;
	display: flex;
    flex-direction: column;
    width: 50vw;
    height: 50%;
   /* border: 2px solid #000;*/
    margin: auto;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.container2 {
    position: static;
	display: flex;
    flex-direction: column;
    width: 50vw;
    height: 50%;
   /* border: 2px solid #000;*/
    margin: auto;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.container3 {
    position: static;
	display: flex;
    flex-direction: row;
    width: clamp(80px, 20vw, 150px);
    height: 50%;
   /* border: 2px solid #000;*/
    margin: auto;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

.social-icon {
  font-size: 28px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

.social-icon:hover {
  color: rgb(0, 251, 80);
}

.email {
  color: rgb(0, 251, 80);
}

.spikes {
  width: clamp(200px, 40vw, 800px);;
}