/* index.css */

@font-face {
    font-family: 'Montreal';
    font-style: normal;
    font-weight: normal;
    src: local('Montreal Regular'), url('Montreal-Regular.woff') format('woff');
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    min-height: 100vh;
    max-width: 100vw;
    background-color: #1a1a1a;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    text-align: center;

}

::selection {
    background-color: #bfbfb1;
    color: rgb(0, 0, 0);
}

h2 {
    color: white;
    font-size: 7rem;
    font-family: 'Playfair Display', sans-serif;
    font-weight: 400;
    z-index: 1;
    animation: cursor .4s step-end infinite alternate;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1rem;
}

.second-container ::selection {
    color: #000;
}

.flower-i {
    font-family: 'Rickles Medium';
    margin-bottom: 1rem;
}

hr  {
    border: none;
    height: 1px;
    background-color: #000000; 
    margin: 20px 0;  
    z-index: 40; 
    margin-top: 43rem; 
}

h1 {
    color: white;
    position: relative;
    font-size: 1.5rem;
    top: 14rem;
    font-weight: 350; 
}

@keyframes cursor {
    50% { 
        border-color: transparent;
    }
}

body {
    padding: 0;
    margin: 0;
  }

.menu-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  
  .menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    background-color: #bfbfb1;
    width: 4rem;
    height: 4rem;
    margin-top: 2rem;
    margin-left: 2rem;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.171);
    animation: fade 0.6s linear;
  }
  
  .checkmark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 1.2em;
    height: 1.2em;
  }
  
  
  .checkmark span {
    width: 27px;
    margin-top: 1.5px;
    height: 2px;
    background-color: rgb(0, 0, 0);
    position: absolute;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    overflow: visible;
  }
  
  .checkmark span:nth-child(1) {
    top: 10%;
  }
  
  .checkmark span:nth-child(2) {
    top: 50%;
  }
  .menu-container input:checked  + .menu-container {
    background-color: transparent;
  }
  
  .menu-container input:checked + .checkmark span:nth-child(1){
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
  }
  
  .menu-container input:checked + .checkmark span:nth-child(2) {
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);
  }

  .menu {
    height: 100vh;
    width: 27rem;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9997;
    left: 0;
    background-color: rgb(19, 19, 19);
    z-index: 999;
    overflow: hidden;
    animation: menuSlideIn 0.5s forwards;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

.menu-content {
    width: 100%;
    height: 40rem;
    position: absolute;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 8rem;
    top: 0;
    left: 0;
}

.menu.hidden {
    opacity: 0;
    background-color: transparent;
}

div.menu-email {
    width: 100%;
    height: 9rem;
    padding: 0.5rem;
    display: flex;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
    overflow: visible;
}

div.menu-email .email {
    color: rgb(119, 119, 119);
    text-transform: uppercase;
    font-size: 1rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    margin-left: 1rem;
    margin-top: 2rem;
}

div.menu-email a {
    color: rgb(171, 166, 166);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    margin-top: 4rem;
    margin-left: 1rem;
    position: absolute;
    background-image: linear-gradient(rgb(171, 166, 166) 0 0);
    background-position: 0 100%; /*OR bottom left*/
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition:
      background-size 0.3s,
      background-position 0s 0.3s;
}

div.menu-email a:hover {
    background-position: 100% 100%; 
    background-size: 100% 2px;
}


div.menu-content span {
    margin-left: 2rem;
    margin-top: 1.5rem;
    font-weight: 600;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-family: 'Inter Tight', sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    overflow: hidden;
}

div.menu-content a:hover,
div.menu-content span:hover {
    color: #bfbfb1;
    transition: all 700ms ease;
    transition-timing-function: cubic-bezier(.16,1,.3,1);
    transform: translateX(5px)
}

div.menu-content a,
div.menu-content span {
    transition: all 0.2s ease;
    transform: translateX(0);
}

div.menu-content a {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: white;
    text-decoration: none;
}

.socials-menu {
    height: 24vh;
    width: 200px;
    position: fixed;
    left: 0;
    bottom: 0;
    margin-left: 2rem;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
    animation: fromtop 0.8s ease;
    mix-blend-mode: inherit;
    display: flex;
    flex-direction: column;
}

@keyframes fromtop {
    from {
        height: 1rem;
    }
}

.socials-menu a {
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.7rem;
}

.menu-instagram {
    fill: #bfbfb1;
    height: 1.7rem;
}
.menu-linkedin {
    fill: #bfbfb1;
    height: 1.7rem;
}
.menu-github {
    fill: #bfbfb1;
    height: 1.7rem;
}

.menu-icon {
    transition: all 0.2s ease, fill 1s ease;
}

.menu-icon:hover {
    margin-left: 2px;
    fill: red;
}

@keyframes shake {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-1px);
    }
    50% {
        transform: translateY(1px);
    }
    70% {
        transform: translateY(-1px);
    }
    100% {
        transform: translateY(0);
    }
}

::-webkit-scrollbar {
    width: 10px; 
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #7e7e7e; 
    border-radius: 10px; 
}

::-webkit-scrollbar-track {
    width: 5px; 
    background-color: transparent;
}


.Btn {
    width: 4rem;
    height: 4rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #171717;
    border: none;
    color: white;
    font-weight: 600;
    gap: 8px;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
    position: fixed;
    right: 0;
    overflow: hidden;
    border-radius: 50%;
    transition-duration: .3s;
    margin-right: 1rem;
    margin-bottom: 1rem;
    z-index: 999;
  }

  .Btn.hidden {
    opacity: 0;
    transform: scale(0);
  }
  
  .svgIcon {
    width: 16px;
    pointer-events: none;
  }
  
  .svgIcon path {
    fill: white;
  }
  
  .Btn::before {
    width: 4rem;
    height: 4rem;
    position: absolute;
    content: "";
    background-color: #bfbfb1;
    border-radius: 50%;
    left: -100%;
    top: 0;
    transition-duration: .3s;
    mix-blend-mode: difference;
  }
  
  .Btn:hover::before {
    transition-duration: .3s;
    left: 0;
    border-radius: 0;
  }

  .Btn svg {
    fill: white;
    transform: rotate(180deg);
    transition: all 0.4s ease, color 0.1s ease;
  }

  .Btn:hover svg {
    fill: rgb(0, 0, 0);
    transform: rotate(180deg);
    animation: arrowshake 0.9s linear infinite 200ms, arrowup 300ms ease;
  }

  .Btn:focus svg {
    margin: 0;
    transform: rotate(0deg);
  }

  .Btn:not(:hover) svg {
    animation: arrowreturn 1s ease;
  } 

  @keyframes arrowreturn {
    to {
        margin-bottom: 0;
    }
  }
  @keyframes arrowup {
    to {
        margin-bottom: 6px;
    }
  }

  @keyframes arrowshake {
    0% {
        margin: 0;
    }
    10% {
        margin-bottom: 6px;
    }
    to {
        margin-bottom: 0;
    }
  }
  

.first-container {
    flex: 1;
    top: 70rem;
    position: absolute;
    background-color: rgb(255, 255, 255);
    width: 100vw;
    height: fit-content;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.first-container ::selection {
    background-color: #a79e9b;
    color: rgb(12, 12, 12);
}

.second-container ::selection {
    background-color: #bfbfb1;
    color: black;
}

.intro-icon {
    position: absolute;
    z-index: 20;
    left: 0;
    margin-left: 18rem;
    margin-right: 3rem;
    margin-top: 16rem;
    user-select: none;
    transition: all 2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.intro-icon:hover {
    animation: extremespin 1s linear infinite;
}

h3 {
    scroll-margin-top: 20rem;
    margin-top: 5rem;
    color: rgb(39, 39, 39);
    font-family: 'Playfair Display', sans-serif;
    font-size: 3rem;
    position: absolute;
    right: 0;
    margin-right: 4rem;
}

h3 ::selection {
    background-color: inherit;
}

.star-img {
    height: 4rem;
    fill: #424242;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.8;
    margin-top: 3rem;
    margin-right: 2.35rem;
    animation: starblink 2s linear infinite;
    transition: all 1.8s ease;
    cursor: pointer;
    z-index: 99;
}

.star-img:hover {
    rotate: -180deg;
}

.intro-p {
    margin-top: 10rem;
    color: rgb(39, 39, 39);
    font-size: 1.5rem;
    position: absolute;
    font-family: 'DM Sans', sans-serif;
    right: 0;
    width: 40rem;
    margin-right: 2rem;
    padding: 2rem;
    text-align: justify;
    hyphens: auto;
    word-break: break-word; 
}

.resume-title {
        color: rgb(39, 39, 39);
        font-family: 'Playfair Display', sans-serif;
        font-size: 3rem;
        position: absolute;
        font-weight: 600;
        margin-top: 4rem;;
        left: 0;
        margin-left: 4rem;
    }

    .resume-p {
        margin-top: 10rem;;
        color: rgb(39, 39, 39);
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        left: 0;
        width: 40rem;
        margin-left: 2rem;
        padding: 2rem;
        text-align: justify;
        hyphens: auto;
        word-break: break-word; 
    }

    .resume-link {
        margin-top: 5rem;
        text-align: left;
        padding: 0;
    }
    .resume-a {
        color: rgb(58, 58, 255);
        text-decoration: underline;
        margin: 0;
        padding: 0;
    }

    .resume-preview {
        height: 20rem;
        position: absolute;
        right: 0;
        margin-top: 8rem;
        margin-right: 8rem;
        border: 2px solid #000;
        border-radius: 25px;
        user-select: none;
        display: block;
        box-shadow: rgba(97, 97, 97, 0.4) 8px 0;
        transition: all 0.4s ease;
    }

    .resume-preview:hover {
        animation-play-state: paused;
        box-shadow: rgba(97, 97, 97, 0.4) 1px 9px;
    }
    
    .expertise-icon {
        position: absolute;
        right: 0;
        margin-right: 15rem;
        margin-top: 19rem;
        margin-left: 3rem;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none;
    }

    .expertise-title {
        color: rgb(39, 39, 39);
        font-family: 'Playfair Display', sans-serif;
        font-size: 3rem;
        position: absolute;
        margin-top: 1rem;
        font-weight: 600;
        top: 96rem;
        left: 0;
        margin-left: 4rem;
    }

    .checklist {
        fill: #353535;
        position: absolute;
        right: 0;
        margin-top: 12rem;
        margin-right: 7rem;
        width: 18rem;
        height: 18rem;
    }

    .expertise-p {
        margin-top: 8rem;
        color: rgb(39, 39, 39);
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        border-width: 2px;
        left: 0;
        width: 40rem;
        margin-left: 2rem;
        padding: 2rem;
        text-align: justify;
        hyphens: auto;
        word-break: break-word;     
    }

    .expertise-ulcontainer {
        margin-top: 24rem;;
        color: rgb(39, 39, 39);
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        border-width: 2px;
        left: 0;
        width: 40rem;
        margin-left: 2rem;
        padding: 2rem;
        text-align: justify;
    }

    .expertise-ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
      }
      
      .expertise-ul li {
        flex: 0 0 50%; /* Each item takes up 50% of the width */
        box-sizing: border-box;
        padding: 10px;
      }
      
    
    .marquee {
        width: 100%;
        height: 2.5rem;
        overflow: hidden;
        white-space: nowrap;
        box-sizing: border-box;
        margin-top: 50rem;
        color: rgb(47, 47, 47);
        padding: 2rem;
        padding: 10px 0;
        cursor: default;
        user-select: none;
    }

    .marquee:hover .marquee-content {
        animation-play-state: paused;
    }
    
    .marquee-content {
        display: inline-block;
        animation: scroll 10s linear infinite;
    }

    @keyframes scroll {
        from {
            transform: translateX(0%);
        }
        to {
            transform: translateX(-100%);
        }
    }

    .second-container {
        background-color: #1a1a1a;
        width: 100vw;
        height: 105rem;
        box-sizing: border-box;
        z-index: 30;
    }

    .webdev-title {
        color: #dbdbd0;
        position: absolute;
        right: 0;
        font-weight: 600;
        font-family: 'Inter Tight', sans-serif;
        font-size: 3rem;
        margin-top: 6rem;
        margin-right: 2rem;
    }

    .webdev-span {
        color: #ffc9d1;
        position: absolute;
        margin-top: 2rem;
        margin-left: 2rem;
        left: 0;
        font-size: 1.3rem;
        letter-spacing: 5px;
        font-family: monospace;
    }

    .webdev-span::selection {
        background-color: transparent;
        color: white;
    }

    .webdev-p {
        margin-top: 11rem;;
        color: #dbdbd0;
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        border-width: 2px;
        right: 0;
        width: 40rem;
        margin-left: 2rem;
        padding: 2rem;
        text-align: justify;
        hyphens: auto;
        word-break: break-word; 
    }

    .webdev-p span {
        padding-right: 3px;
        border-right: 1px solid #dbdbd0;
        animation: cursor .6s step-end infinite alternate;
    }

    @keyframes cursor {
        50% {
            border-color: transparent;
        }
    }
    .webdev-icon {
        position: absolute;
        left: 0;
        height: 9rem;
        margin-left: 16rem;
        margin-top: 11rem;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none;
    }

    .secondhr {
        border: none;
        height: 1px;
        background-color: #bfbfb14b; 
        margin: 20px 0;  
        z-index: 40; 
        margin-top: 30rem; 
    }

    .webdesign-title {
        color: #dbdbd0;
        position: absolute;
        right: 0;
        font-weight: 600;
        font-family: 'Inter Tight', sans-serif;
        font-size: 3rem;
        margin-top: 6rem;
        margin-right: 2rem;
    }

    .webdesign-p {
        margin-top: 11rem;;
        color: #dbdbd0;
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        border-width: 2px;
        right: 0;
        width: 40rem;
        margin-left: 2rem;
        padding: 2rem;
        text-align: justify;
        hyphens: auto;
        word-break: break-word; 
        
    }

    .webdesign-icon {
        position: absolute;
        left: 0;
        height: 9rem;
        margin-left: 16rem;
        margin-top: 16rem;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none;
        animation: balloonfloat 3s linear infinite;
    }
    @keyframes balloonfloat {
        50% {
            transform: translateY(-10px);
        }
        100% {
            transform: translateY(0);
        }
    }

    .secondhr1 {
        border: none;
        height: 1px;
        background-color: #bfbfb150; 
        margin: 20px 0;  
        z-index: 40; 
        margin-top: 40rem; 
    }

    .seo-title {
        color: #dbdbd0;
        position: absolute;
        right: 0;
        font-weight: 600;
        font-family: 'Inter Tight', sans-serif;
        font-size: 3rem;
        margin-top: 6rem;
        margin-right: 2rem;
    }

    .seo-p {
        margin-top: 11rem;;
        color: #dbdbd0;
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        border-width: 2px;
        right: 0;
        width: 40rem;
        margin-left: 2rem;
        padding: 2rem;
        text-align: justify;
        hyphens: auto;
        word-break: break-word;
        
    }

    .seo-icon {
        position: absolute;
        left: 0;
        height: 9rem;
        margin-left: 16rem;
        margin-top: 9rem;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none;
        animation: searching 4s linear infinite;
    }

    @keyframes searching {
        0% {
            transform: translate(10px, 0);
          }
          25% {
            transform: translate(0, 10px);
          }
          50% {
            transform: translate(-10px, 0);
          }
          75% {
            transform: translate(0, -10px);
          }
          100% {
            transform: translate(10px, 0);
          }
    }

    .third-container {
        background-color: #fff;
        width: 100vw;
        height: 70rem;
    }

    .contact-title {
        width: 50vw;
        color: #252525;
        position: absolute;
        font-weight: 700;
        font-family: 'Inter Tight', sans-serif;
        text-transform: uppercase;
        text-align: left;
        font-size: 5rem;
        left: 0;
        margin-top: 6rem;
        transform: translateX(3rem)
    }

    .contact-title span {
        color: #544242;
    }

    .contact-title span::selection {
        color: inherit;
    }

    .contact-title ::selection {
        color: black;
    }

    .contact-p {
        margin-top: 20rem;;
        color: #000000;
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        border-width: 2px;
        left: 0;
        width: 40rem;
        margin-left: 3rem;
        padding: 2rem;
        text-align: justify;
        hyphens: auto;
        word-break: break-word; 
        
    }

    .button {
        line-height: 1;
        height: 4rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: .75rem;
        background-color: rgb(0, 0, 0);
        color: #ffffff;
        border-radius: 10px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 600;
        font-size: 18px;
        padding: .75rem 1.5rem;
        padding-left: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all .2s;
        position: absolute;
        user-select: none;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 19rem;   
      }
      
      .button__icon-wrapper {
        flex-shrink: 0;
        width: 25px;
        height: 25px;
        position: relative;
        color: #ffffff;
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
      }
      
      .button:hover {
        background-color: #ffffff;
        color: rgb(0, 0, 0);
        box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
      }
      
      .button:hover .button__icon-wrapper {
        color: rgb(0, 0, 0);
      }
      
      .button__icon-svg--copy {
        position: absolute;
        transform: translate(-150%, 150%);
      }
      
      .button:hover .button__icon-svg:first-child {
        transition: transform .3s ease-in-out;
        transform: translate(150%, -150%);
      }
      
      .button:hover .button__icon-svg--copy {
        transition: transform .3s ease-in-out .1s;
        transform: translate(0);
      }
    

       div.contact-form {
        height: 40rem;
        width: 70rem;
        background-color: rgb(106, 106, 106);
        position: fixed;
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        text-align: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 110;
       }

       div.contact-form .contact-wrapper {
        width: 60rem;
        height: 80rem;
        background-color: #000;
        overflow-y: auto;
       }

       div.contact-wrapper .contactform-title {
        color: white;
        background-color: red;
        font-size: 2rem;
       }

       footer {
        color: #3a3a3a;
        margin-bottom: 5rem;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    @keyframes menuSlideIn {    
        from {
            transform: translateX(-100%);
        }
        to {
            transform: translateX(0);
        }
    }
    
    @keyframes menuSlideOut {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-100%);
        }
    }

@keyframes spin {
        0% {
            transform: rotate(0);
        }
        20% {
            transform: rotate(-60deg);
        }
        50% {
            transform: rotate(30deg);
        }
        65% {
            transform: rotate(30deg);
        }
        80% {
            transform: rotate(60deg);
        }
    }

@keyframes hover {
        0%, 100% {
            transform: translateY(0)
        }
        50% {
            transform: translateY(10px);
        }
    }

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media only screen and (max-width: 360px) {
    li {
        font-size: 0.4rem;
    }
    .contact-p {
        transform: translateY(1.2rem);
    }
}

/* Small devices (phones, 500px and down) */
@media only screen and (max-width: 500px)  {
    .first-container {
        top: 50rem;
    }
    .Btn {
       bottom: 210px;
    }

    .instagram {
        font-size: 0.8rem;
    }

    h2 {
        margin-top: -12rem;
        font-size: 5rem;
    }
    li {
        font-size: 10px;
    }
    h1 {
        font-size: 1rem;
        top: -1rem;
    }
    .intro-container {
        margin-top: 0;
    }
    .intro-p {
        font-size: 1rem;
        margin-right: 0;
        margin-top: 9rem;
        margin-left: auto;
        width: 100vw;
    }
    .resume-title {
        margin-left: 2rem;
    }
    .resume-p {
        font-size: 1rem;
        margin-right: 0;
        margin-left: auto;
        width: 100vw;
    }
    .intro-icon {
        display: none;
    }
    .resume-preview {
        margin-top: 26rem;
        margin-right: 0;
        left: 50%;
        transform: translateX(-50%);
        
    }
    .horizontal-rule2 {
        margin-top: 52rem;
    }
    .expertise-title {
        top: 99rem;
        margin-left: 2rem;
    }

    .expertise-p {
        font-size: 1rem;
        margin-right: 0;
        margin-left: auto;
        width: 100vw;
    }

    .expertise-icon {
        display: none;
    }
    .expertise-ulcontainer {
        width: fit-content;
        padding: 0;
        margin: 0;
        margin-top: 19rem;
        margin-left: 2rem;
    }
    li {
        font-size: 0.8rem;
    }
    .webdev-title {
        font-size: 2rem;
    }
    .webdev-p {
        font-size: 1rem;
        width: 100vw;
    }
    .webdev-icon {
       display: none;
    }
    .webdesign-title {
        font-size: 2rem;
    }
    .webdesign-p {
        font-size: 1rem;
        width: 100vw;
    }
    .webdesign-icon {
        height: 5rem;   
        margin-top: 4rem;
        margin-left: 2rem;
    }
    .seo-title {
        font-size: 2rem;
    }
    .seo-p {
        font-size: 1rem;
        width: 100vw;
    }
    .seo-icon {
        height: 2rem;
        margin-top: 6rem;
        margin-left: 3rem;
    }
    .contact-title {
        width: 60vw;
        margin-left: -1rem;
        font-size: 2.3rem;
    }
    .contact-p {
        width: 100vw;
        font-size: 1rem;
        margin-left: 0;
        margin-top: 13rem;
    }
    .button {
        margin-bottom: 23rem;
    }
    .Btn {
        margin-bottom: 1rem;
        bottom: 0;
    }
    .button {
        margin-bottom: 29rem;
    }
    
}

/* Medium devices (tablets, 501px to 900px) */
@media only screen and  (min-width: 670px) {
    h1 {
        font-size: 1.5rem;
        margin-top: 4rem;

    }
    .resume-preview {
        margin-top: 31rem;
        margin-right: 0;
        left: 50%;
        transform: translateX(-50%);
        
    }
    .horizontal-rule2 {
        margin-top: 58rem;
    }
    .intro-container {
        align-items: center;
        justify-content: center;
    }
    .expertise-title {
        top: 105rem;
        margin-left: 2rem;
    }
    .expertise-icon {
        display: none;
    }
    .intro-icon {
        display: none;
    }
    .webdev-icon {
        display: none;
    }
    .webdesign-icon {
        height: 6rem;
        margin-top: 4rem;
        margin-left: 4rem;
    }
    .seo-icon {
         margin-left: 4rem;
         margin-top: 6rem;
         height: 3rem;
    }
    .contact-title {
        font-size: 2.9rem;
    }
    .contact-p {
        width: 85vw;
        margin-top: 16rem;
        margin-left: 1rem;
    }
    .Btn {
        margin-bottom: 1rem;
        bottom: 0;
    }
    .resune-tooltip {
        visibility: hidden;
        display: none;
    }
}

@media only screen and (min-width: 500px) and (max-width: 670px){
    .intro-icon {
        display: none;
    }
    .intro-p {
        font-size: 1.2rem;
        margin-right: 2rem;
        margin-top: 8rem;
        width: 90vw;
    }
    .resume-title {
        margin-top: 1rem;
    }
    .resume-p {
        font-size: 1rem;
        margin-left: 2rem;
        margin-top: 5rem;
        width: 90vw;
    }
    .resume-preview {
        margin-top: 22rem;
        margin-right: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 16rem;
    }
    .expertise-title {
        top: 90rem;
        margin-left: 2rem;
    }

    .expertise-p {
        font-size: 1rem;
        margin-right: 0;
        margin-left: auto;
        width: 100vw;
    }

    .expertise-icon {
        display: none;
    }
    .expertise-ulcontainer {
        width: fit-content;
        padding: 0;
        margin: 0;
        margin-top: 19rem;
        margin-left: 2rem;
    }
    li {
        font-size: 0.8rem;
    }
    .webdev-title {
        font-size: 2rem;
    }
    .webdev-p {
        font-size: 1rem;
        width: 100vw;
    }
    .webdev-icon {
        height: 3.7rem;   
        margin-top: 5.4rem;
        margin-left: 2rem;
    }
    .webdesign-title {
        font-size: 2rem;
    }
    .webdesign-p {
        font-size: 1rem;
        width: 100vw;
    }
    .webdesign-icon {
        height: 5rem;   
        margin-top: 4rem;
        margin-left: 2rem;
    }
    .seo-title {
        font-size: 2rem;
    }
    .seo-p {
        font-size: 1rem;
        width: 100vw;
    }
    .seo-icon {
        height: 2rem;
        margin-top: 6rem;
        margin-left: 3rem;
    }
    .contact-title {
        margin-left: -1rem;
        font-size: 2.3rem;
    }
    .contact-p {
        width: 80vw;
        font-size: 1rem;
        margin-left: 0;
        margin-top: 16rem;
    }
    .Btn {
        margin-bottom: 1rem;
        bottom: 0;
    }
    .button {
        margin-bottom: 26rem;
    }
}

/* Large devices (desktops, 901px and up) */
@media only screen and (min-width: 900px) {
    h1 {
        font-size: 1.7rem;
        margin-top: 1rem;
    }
    .intro-container {
        margin-top: 0;
        top: 70rem;
    }
    .resume-preview {
        margin-top: 31rem;
        margin-right: 0;
        left: 50%;
        transform: translateX(-50%);
        
    }
    .horizontal-rule2 {
        margin-top: 62rem;
    }
    .expertise-title {
        top: 110rem;
        margin-left: 2rem;
    }
    .expertise-icon {
        display: none;
    }
    .Btn {
        margin-bottom: 1rem;
        bottom: 0;
    }
    .contact-title {    
        font-size: 3.9rem;
    }
    .contact-p {
        margin-top: 19rem;
    }
}

/* Extra small devices (phones, 400px and down) */
@media only screen and (max-width: 400px) {
    h1 {
        margin-top: 2rem;
        font-size: 1rem;
    }
    .contact-p {
        margin-top: 17rem;
    }
    .resume-preview {
        margin-right: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 31rem;
    }
    .horizontal-rule2 {
        margin-top: 58rem;
    }
    .expertise-title {
        top: 106rem;
        margin-left: 2rem;
    }
}

@media only screen and (min-width: 1000px) {
    .contact-p {
        margin-top: 20rem;
    }
}

@media only screen and (max-width: 1000px) {
    .webdesign-icon {
        animation-play-state: paused;
    }
}

@media only screen and (min-width: 1220px) {
    .intro-icon {
        display: block;
        height: 200px;
        margin-left: 9rem;
    }
    .resume-preview {
        height: 20rem;
        position: absolute;
        right: 0;
        left: auto;
        margin-top: 8rem;
        margin-right: 8rem;
        user-select: none;
        display: block;
        animation: hover 3s linear infinite;
        
    }
    .horizontal-rule2 {
        margin-top: 47rem;
    }
    .expertise-title {
        top: 94rem;
        margin-left: 4rem;
    }
    .expertise-icon {
        display: block;
    }
    .webdev-icon {
        display: block;
        height: 9rem;
        margin-left: 16rem;
        margin-top: 10rem;
    }
    .webdesign-icon {
        height: 9rem;
        margin-left: 16rem;
        margin-top: 16rem;
    }
    .seo-icon {
        height: 9rem;
        margin-left: 16rem;
        margin-top: 9rem;
    }
    .contact-title {
        width: 50vw;
        color: #252525;
        position: absolute;
        font-weight: 700;
        font-family: 'Inter Tight', sans-serif;
        text-transform: uppercase;
        hyphens: auto;
        word-break: break-word;     
        font-size: 4rem;
        left: 0;
        margin-top: 6rem;
        transform: translateX(2rem);
    }
    .contact-p {
        margin-top: 17rem;
        color: #5e5e56;
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        border-width: 2px;
        left: 0;
        width: 40rem;
        margin-left: 3rem;
        padding: 2rem;
        text-align: justify;
        hyphens: auto;
        word-break: break-word; 
    }
    .socials-menu {
        display: flex;
        visibility: visible;
    }
}

@media only screen and (min-width: 1280px) {
    .intro-icon {
        display: block;
        height: 200px;
        margin-left: 18rem;
    }
    .horizontal-rule2 {
        margin-top: 47rem;
    }
    .expertise-title {
        top: 94rem;
        margin-left: 4rem;
    }
    .expertise-icon {
        display: block;
    }
    .webdev-icon {
        display: block;
        height: 9rem;
        margin-left: 16rem;
        margin-top: 10rem;
    }
    .webdesign-icon {
        height: 9rem;
        margin-left: 16rem;
        margin-top: 16rem;
    }
    .seo-icon {
        height: 9rem;
        margin-left: 16rem;
        margin-top: 9rem;
    }
    .contact-title {
        width: 50vw;
        color: #252525;
        position: absolute;
        font-weight: 700;
        font-family: 'Inter Tight', sans-serif;
        text-transform: uppercase;
        hyphens: auto;
        word-break: break-word;     
        font-size: 5rem;
        left: 0;
        margin-top: 6rem;
        transform: translateX(5rem);
    }
    .contact-p {
        margin-top: 20rem;;
        color: #5e5e56;
        font-size: 1.5rem;
        position: absolute;
        font-family: 'DM Sans', sans-serif;
        border-width: 2px;
        left: 0;
        width: 40rem;
        margin-left: 3rem;
        padding: 2rem;
        text-align: justify;
        hyphens: auto;
        word-break: break-word; 
    }
}


@media only screen and (max-width: 430px) and (min-width: 410px) {
    .contact-p {
        margin-top: 17rem;
    }
}
