* {
    font-family: "Inter", sans-serif;
    font-size: 15px;
}



input,
input:hover,
input:focus,
input:active,
.button,
.button:hover,
.button:focus,
#copyBtn:hover,
.contactBtn,
.contactBtn:hover,
.contactBtn:focus {
  cursor: url("Pointer.svg") 16 16, pointer;
}

body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  touch-action: none;
  touch-action: pan-x pan-y;
  cursor: url("Cursor.svg") 12.5 12.5, pointer;
}


#contact-form:focus-within {
  cursor: url("Pointer.svg") 16 16, pointer;
}

@supports (-webkit-touch-callout: none) and (not (not (-webkit-appearance: none))) {
    input,
    input:hover,
    input:focus,
    input:focus:hover,
    .button,
    .button:hover,
    .button:focus,
    #copyBtn:hover,
    .contactBtn,
    .contactBtn:hover,
    .contactBtn:focus {
      cursor: url("PointerFallback.png") 32 32, pointer;
    }

    body, html {
      cursor: url("CursorFallback.png") 25 25, pointer;
    }
    #contact-form:focus-within {
      cursor: url("PointerFallback.png") 32 32, pointer;
    }
}

hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.20); /* or any color */
  width: 100%;
}

.contactBtn, .button {
  background-color: transparent;
  border: none;
  color: white;
  margin: 0;
  padding: 0;
}

.button:focus {
    outline: 4px dotted white;
}

.contactBtn:focus {
  outline: 4px dotted white;
}


#contact-form {
  display: flex;
  justify-content: space-around;
  width: 100%;
  align-items: end;
}

.button {
    font-weight: 600;
}

#submit {
  background-color: transparent;
  border: none;
  color: #FFFF;
  padding: 5px;
}

#contact-form div {
  display: flex;
  flex-direction: column;

}

#contact-form div input {
  margin: 8px 0;
}

#contact-form input {
  height: 40px;
  width: 418px;
  background-color: #FFFFFF20;
  border: none;
  border-radius: 2px;
  padding-left: 15px;
  color: white;
}

#copyTarget {
  font-size: 14px;
  font-weight: 300;

}

input:focus {
  outline: 4px dotted white;
}

#contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

#form .row {
  display: flex;
  align-items: center;
  gap: 170px;
  padding: 0px 12px 12px 12px;

}

#form .row .col {
  display: flex;
  gap: 14px;
}

#card {
    visibility: hidden; /* Hide until positioned */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 640PX;
    height: auto;
    min-height: 340px;
    background-color: #1B1B1E;
    overflow: hidden;
    transform-origin: center center;

    
}


#card2 {
  width: 200px;
  height: 200px;
  background-color: #F76F98;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 100%;
}


.text {
    display: flex;
}

.text div:nth-child(2) {
  padding: 5px;
}

.text div h1 {
  font-size: 22px;
  line-height: 25px;
}

.text div:nth-child(1) h1, .text div:nth-child(2) h1 {
  font-weight: 300;
}

.text div:nth-child(1), .text div:nth-child(3) {
  margin-top: 24px;
}

.text div:nth-child(2) {
  transform: rotate(-1.7deg);
}

#card div p, #card div h1, #card div a {
    padding: 5px;
    margin: 0;
}

#card div a {
    margin: 0;
    text-decoration: none;
    color: white;
}


  #copyBtn {
    min-width: 70px;
  }


  #submit {
    min-width: 130px;
  }

  hr {
  margin-bottom: 16px;
}

@media (max-width: 700px) {
  #card {
    width: 320px;
    height: auto;
    min-height: 185px;
  }
  .text div h1 {
    font-size: 11px;
  }


  .text div:nth-child(2) {
    padding: 2px;
  }

  .text div h1 {
    line-height: 11px;
  }

  .text div:nth-child(1), .text div:nth-child(3) {
    margin-top: 12px;
  }


  #copyTarget {
    font-size: 8px;
  }
  #copyBtn {
    min-width: 40px;
  }

  * {
    font-size: 10px;
  }

  #submit {
    min-width: 85px;
  }

  #contact-form input {
    height: 24px;
    width: 180px;
  }
  #form .row {
    padding: 0 0 0 0;
    gap: 30px;
  }
#card {
  padding: 5px;
}

#contact-form div input {
  margin: 3px;
}

hr {
  margin-bottom: 12px;
}

}

.menu {
    height: auto;
    min-height: 185px;
    width: 100%;
    background-color: #1B1B1E;
    position: absolute;
    right: -100%;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
}

img {
    height: 25px;
}

#card.menu-open .menu {
  right: 0;
}



::selection {
  background: #F02D3D; /* highlight background color */
  color: #ffffff;       /* highlight text color */
}