body {
    padding: 0;
    margin: 0;
}
#header {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 130px;
    background-color: #15F5BA;
    font-family: "Tilt Warp", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    align-items: center;
    box-shadow: 0px 0px 10px 10px #575757;
}

h1 {
    font-size: 36px;
    margin-left: 2.3%;
    color: #836FFF;
    text-shadow: 2px 2px #000000;
}

#header-bar > h2 {
   font-size: 24px;
   font-weight: lighter; 
}

#header-bar {
    position: absolute;
    background-color: #1DDDAB;
    height: 53px;
    display: flex;
    flex-direction: row;
    width: 45%;
    right: 18%;
    justify-content: space-around;
    align-items: center;
    border-radius: 25px;
}

#header-bar > h2 {
    box-shadow: inset 0 0 0 0 #000000;
    color: #000000;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    font-family: Helvetica;
    font-size: 16pt;
}

  #header-bar > h2:hover {
    box-shadow: inset 100px 0 0 0 #000000;
    color: white;
  }


#contactButton {
    display: flex;
    position: absolute;
    right: 3.4%;
    background-color: white;
    width: 11.7%;
    text-align: center;
    height: 53px;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    z-index: 1;
}

#black {
    margin-top: 20px;
    position: absolute;
    right: 2.8%;
    width: 11.7%;
    height: 53px;
    background-color: #000000;
    border-radius: 25px;
}

#contactButton > h2 {
    position: relative;
  }
  
  #contactButton > h2::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 4px;
      border-radius: 4px;
      background-color: #18272F;
      bottom: 0;
      left: 0;
      transform-origin: right;
      transform: scaleX(0);
      transition: transform .3s ease-in-out;
    }
  
    #contactButton > h2:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }

#home {
    display: flex;
    background-image: url("../images/background.png");
    width: 100%;
    height: 815px;
    align-items: center;
    justify-content: space-around;
}

#home > * {
    margin-bottom: 50px;
}

#home > img {
    height: 650px;
}

#intro {
    width: 49%;
}

#intro > * {
    font-family: "Reem Kufi Fun", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #BDBDBD;
    margin: 0
}

#intro > .emoji {
    font-size: 100px;
}

#greeting {
    font-size: 128px;
    font-weight: 400;
    color: white;
}

#name {
    font-size: 64px;
    font-weight: 400;
}

#job {
    color: #836FFF;
    font-size: 40px;
}

#intro > p {
    font-size: 27px;

}

