    @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
    html{
        scroll-behavior: smooth;
        scroll-padding-top: 40px;
    }
    
    body{
        margin: 62px 0;
        background-color: #50d8d7;
background-image: linear-gradient(316deg, #50d8d7 0%, #923993 74%);

    }
    hr{
        border: 1.5px dashed #E1E2E4; 
        margin-top: 98px;
    }
    .container{
        height: 3420px;
        max-width: 621px;
        min-width: 265px;
        background-color: #fff;
        border-radius: 1em;
        text-align: center;
        margin: auto;
    }
    .ProfilePic{
        margin-top: 105px;
    }
    img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }

/* Social icons */

.wrapper{
  display: inline-flex;
}
.wrapper .icon{
  margin: 35px 20px 0;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span{
  display: block;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span i{
  line-height: 60px;
  font-size: 25px;
  color: #fff;
}
.wrapper .icon .tooltip{
  position: absolute;
  top: 0;
  z-index: 1;
  background: #fff;
  color: #fff;
  padding: 10px 18px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon .tooltip{
  top: -70px;
  opacity: 1;
  pointer-events: auto;
}

.wrapper .icon span{
  color: #fff;
}
.wrapper .icon span,
.wrapper .icon .tooltip{
  text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
}
.wrapper .facebook span,
.wrapper .facebook .tooltip,
.wrapper .facebook .tooltip:before{
  background: #69AFE0;
}
.wrapper .twitter span,
.wrapper .twitter .tooltip,
.wrapper .twitter .tooltip:before{
  background: #69AFE0;
}
.wrapper .facebook:hover span,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip:before{
    background: #A22EBB;
        transition: 0.25s ease;
}

.wrapper .twitter:hover span,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip:before{
    background: #A22EBB;
        transition: 0.25s ease;
}

/* Name Container */
.namecontainer{
    text-align: center;
    margin-top: 40px;
}

.namecontainer h1{
    color: black;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 2.25em;
    padding: 0 110px;
}
.namecontainer p{
    color: #999CA4;
    text-align: center;
    font-family: 'inter', serif;
    font-weight: 300;
    font-size: 1.5em;
    padding: 0 80px;
}

/* Button */
.button{
    margin-top: 50px;
}
.button a{
    padding: 17.5px 95px;
    background-color: #69AFE0;
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-family: 'inter', serif;
    font-weight: 500;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    font-size: 1em;
}
.button a:hover{
        background: #A22EBB;
        transition: 0.25s ease;
    }
    
    
    /* Pop Up Newsletter */
    
        .popup-btn {
      position: absolute;
      width: 250px;
      padding: 0.65rem 0;
      margin-bottom: 1rem;
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.1rem;
      border-radius: 8px;
      color: var(--white);
      cursor: pointer;
      border: transparent;
      background: linear-gradient(45deg, var(--blue) 20%, var(--purple) 80%);
      box-shadow: var(--shadow-1);
      z-index: 1;
      transition: transform 0.2s, font-size 0.2s;
    }
    
    .popup-btn:hover {
      font-size: 1.25rem;
      transform: scaleX(1.03);
    }
    
    .popup {
      opacity: 0;
      border-radius: 8px;
      margin-top: -1100px;
      background-color: var(--white);
      box-shadow: var(--shadow-1);
      transform: scale(0.1);
      z-index: 2;
      transition: transform 0.8s, opacity 0.5s, margin-top 0.8s;
    }
    
    .popup.active {
      opacity: 1;
      margin-top: 0px;
      transform: scale(1);
    }
    
    .popup-top {
      position: relative;
      padding: 1rem 2rem;
      text-align: center;
      color: var(--white);
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
      background: linear-gradient(45deg, var(--blue) 20%, var(--purple) 80%);
    }
    
    .popup-top .email-icon {
      position: absolute;
      top: -3.5rem;
      left: 50%;
      transform: translateX(-50%);
      font-size: 4rem;
      width: 7rem;
      height: 7rem;
      line-height: 7rem;
      text-align: center;
      border-radius: 50%;
      border: 3px solid var(--white);
      background-color: var(--purple);
    }
    
    .popup-top #close-icon {
      position: absolute;
      right: 0.9rem;
      top: 0.7rem;
      font-size: 1.5rem;
      cursor: pointer;
    }
    
    .popup-top #close-icon:hover {
      color: var(--red);
    }
    
    .popup-top h2 {
      margin-top: 3rem;
      margin-bottom: 0.5rem;
      font-size: 2.3rem;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
    }
    
    .popup-top p {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }
    
    .popup-bottom {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding: 1rem 2rem;
    }
    
    .popup-bottom input {
      width: 100%;
      border-radius: 8px;
      padding: 1rem;
      margin: 1rem 0;
      font-size: 1rem;
      font-weight: 500;
      color: var(--blue);
      border: 2px solid var(--blue);
      outline: none;
      transition: color 0.3s, background-color 0.3s, border 0.2s;
    }
    
    .popup-bottom input::placeholder {
      color: var(--blue-light);
    }
    
    .popup-bottom input:focus,
    .popup-bottom input:active {
      color: var(--purple);
      background-color: var(--purple-light);
      border: 2px solid var(--purple);
    }
    
    .popup-bottom input:focus::placeholder,
    .popup-bottom input:active::placeholder {
      color: var(--purple);
    }
    
    .popup-bottom button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 0.65rem 0;
      margin-bottom: 1rem;
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0.1rem;
      border-radius: 8px;
      color: var(--white);
      cursor: pointer;
      border: transparent;
      background: linear-gradient(45deg, var(--blue) 20%, var(--purple) 80%);
      transition: box-shadow 0.3s;
    }
    
    .popup-bottom button:hover {
      box-shadow: var(--shadow-2);
    }
    
    .popup-bottom button i {
      position: relative;
      width: 2.5rem;
      height: 2.5rem;
      line-height: 2.5rem;
      text-align: center;
      margin-left: 1rem;
      border-radius: 50%;
      z-index: 1;
    }
    
    .popup-bottom button i::after {
      content: "";
      width: 2.5rem;
      height: 2.5rem;
      position: absolute;
      left: 0;
      background-color: var(--blue);
      border-top-left-radius: 50%;
      border-bottom-left-radius: 50%;
      border-bottom-right-radius: 50%;
      z-index: -1;
    }


    /* Responsive */

    @media (max-width: 1680px){
        .container{
        max-width: 388px;
        min-width: 265px;
        height: 2830px;
    }
    .ProfilePic{
        margin-top: 70px;
    }
    img{
        width: 100px;
        height: 100px;
    }
    hr{
        border: 1.5px dashed #E1E2E4; 
        margin-top: 62px;
    }
    .namecontainer h1{
    font-weight: 300;
    font-size: 2em;
    padding: 0 50px;
    }
    .namecontainer p{
        font-weight: 300;
        font-size: 0.8em;
        padding: 0 60px;
        line-height: 22.5px;
    }
    .wrapper .icon span i{
    line-height: 50px;
    font-size: 20px;
    color: #fff;
    }
    .wrapper .icon span{
    height: 50px;
    width: 50px;
    }
    .button{
    margin-top: 50px;
    }
    .button a{
        padding: 8px 35px;
        font-weight: 500;
        letter-spacing: 0.05rem;
        font-size: 1em;
    }
}
@media (max-width: 720px){
    .container{
        max-width: 388px;
        min-width: 265px;
        height: 2460px;
    }
    .ProfilePic{
        margin-top: 50px;
    }
    hr{
        border: 1.5px dashed #E1E2E4; 
        margin-top: 38px;
    }
    .wrapper #HomeBtn{
        margin-top: 2px;
    }
    .namecontainer h1{
    padding: 0 20px;
    }
    .namecontainer p{
        padding: 0 35px;
    }
}

@media (max-width: 480px){
    .button a{
        padding: 7px 28%;
    }
}
@media (max-width: 450px){
    .container{
        width: 90%;
        min-width: 265px;
    }
}
@media (max-width: 405px){
    .button a{
        padding: 7px 25%;
    }    
    .container{
        height: 2550px;
    }
}
@media (max-width: 365px){
    .container{
        height: 2600px;
    }
}
@media (max-width: 350px){
    .container{
        height: 2625px;
    }
}
@media (max-width: 333px){
    .container{
        height: 2675px;
    }
}
@media (max-width: 320px){
    .button a{
        padding: 7px 22.5%;
    }
    .container{
        height: 2850px;
    }
}

.MadeByTel{
position: absolute; 
top: 3435px; 
left: 0; 
right: 0; 
margin: auto;
}

.MadeByTel p{
color: black; 
font-family: 'inter', serif; 
font-weight: 400; font-size: 0.6em;
}
.MadeByTel a{
color: #FF0000; 
text-decoration: none; 
border-bottom: solid 1.5px #FF0000; 
font-family: 'inter', serif; 
font-weight: 500; 
font-size: 1.1em;
}
.MadeBy{
position: 
fixed; bottom: 0; 
right: 0; 
padding-right: 20px;
}

.MadeBy p{
color: white; 
font-family: 'inter', serif; 
font-weight: 400; 
font-size: 0.8em;
}

.MadeBy a{
    color: #FF0000; 
    text-decoration: none; 
    border-bottom: solid 1.5px #FF0000; 
    font-family: 'inter', serif; 
    font-weight: 500; 
    font-size: 1.1em;
}
    