@import url('https://fonts.googleapis.com/css2?family=Londrina+Shadow&family=Montserrat:wght@500&family=New+Rocker&family=Poppins:wght@100;300&family=Teko:wght@300&family=Ubuntu:ital,wght@1,300&display=swap');

* {
  margin: 0;
}

body {
  background-color: black;
  font-family: montserrat;
}

nav {
  color: white;
  /* width: 100%; */
  margin-left: -5px;
  padding: 40px;
  background-color: black;
  border-color: white;
  display: flex;
  justify-content: flex-end;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  animation: transitionIn 2s;
}

@keyframes transitionIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

a, a:visited {
  color: white;
  text-decoration: none;
  font-size: 1.5vw;
}

a:hover {
  color: red;
}

.container {
  margin: 5% 15%;
  padding-left: 5%;
}

h1 {
  margin: auto 0;
  font-size: 9vw;
}

.subpages-title {
  color: white;
  font-size: 12vh;
  margin-bottom: 2%;
}

.subpages-subtitle {
  color: red;
  font-size: 8vh;
  margin-top: 5%;

}

.subpages-content {
  color: white;
  font-size: 1.5vw;
}

.subpages-contact {
  color: red;
  font-size: 1.5vw;
}

.contact-me {
  font-size: 12vh;
  margin-bottom: 2%;
  color: red;
}

.contact-links {
  margin-left: 0;
  padding-left: 2rem;
  position: relative;
  margin-top: 0px;
  padding-top: 20px;
}

.email {
  background: #F9F5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.4px;
  color: #07070A;
}

.click-to-copy-container {
  position: relative;
}

button.click-to-copy {
  background: black;
  font-family: montserrat;
  border: none;
  box-shadow: none;
  padding-left: 2rem;
  /* padding: 1rem; */
  border-radius: .25rem;
  font-size: 1.5vw;
  /* font-weight: 600; */
  /* letter-spacing: -0.2px; */
  color: white;
  /* transition: all .2s ease-in-out; */
}

button.click-to-copy:hover {
  color: red;
}

button.click-to-copy + span {
  /* We make the span hidden by default. In this case, using display: none; isn't an issue from an accessibility standpoint, since we don't want screen readers to pick this up unless the user clicks on the button */
  display: none;
  /* From here on, just styling purposes 👇🏻 */
  margin-left: 1rem;
  background: black;
  padding: .5rem;
  border-radius: .2rem;
  position: absolute;
  top: .75rem;
  font-size: 13px;
  letter-spacing: .4px;
  font-weight: 600;
  color: white;
}

/* Styles for the tooltip arrow */
button.click-to-copy + span:after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(218, 218, 218, 0);
    border-right-color: #DADADA;
    border-width: 6px;
    margin-top: -6px;
}

/* When the click event is fired, and the .is-copied class is added to the button, show the tooltip */
button.click-to-copy.is-copied + span {
  display: initial;
}