@font-face {
    font-family: "League-Spartan";
    src: url("./assets/font/LeagueSpartan-Regular.ttf") format("truetype");
}
*{
    box-sizing: border-box;
    margin:0;
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
}
body{
    font-family: "League-Spartan", sans-serif;
    background-color: black;
    /* height:100vh; */
    display:block;
    line-height: 24px;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}
.overflow-hidden{
    overflow: hidden;
}
.inset-0{
    inset:0;
}
.flex{
    display:flex;
}
.flex-col{
    flex-direction: column;
}
.justify-center{
    justify-content: center;
}
.justify-space-around{
    justify-content: space-around;
}
.items-center{
    align-items: center;
}
.grid{
    display:grid;
}
.gap-6 {
    gap: 1.5rem;
}
.p-4{
    padding:1rem;
}
.transition-transform{
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}
.w-5{
    width:1.25rem;
}
.h-5{
    height:1.25rem;
}
.mr-2{
    margin-right:0.5rem;
}
.mb-3{
    margin-bottom:0.75rem;
}
.font-semibold{
    font-weight:600;
}
.text-purple{
    color:#c084fc;
}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-green{
    color:#22c55e;
}
.text-yellow{
    color:#eab308;
}
.text-blue{
    color:#3b82f6;
}
.hover-scale-105:hover{
    transform: scale(1.05);
}

.bg-lines{
    height:100%;
}
.bg-lines .absolute{
    background-image:linear-gradient(to right, #1a1a1a 1px, transparent 1px), linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
    background-size:40px 40px;
    opacity:0.5;
}
header{
    height:3rem;
}
.container{
    max-width: 1400px;
    padding: 2.5rem;
    background: linear-gradient(135deg,rgb(15,15,15),rgb(18,18,18),rgb(20,20,20));
    margin:auto;
}
.main-container{
    background: linear-gradient(135deg,rgb(15,15,15),rgb(18,18,18),rgb(20,20,20));
    border-radius: 18px;
    gap:1.5rem;
}
.profile-image{
    width:425px;
}
.profile-image img{
    mask-image:url("./assets/mask.svg");
    mask-size:contain;
    mask-repeat:no-repeat;
    /* mask-position: center; */
    /* object-position: center; */
    max-width: 100%;
    height:100%;
    display: block;
    object-fit: cover;
    filter:grayscale(1);
}
.profile-details{
    width:100%;
    background-color:rgb(24 24 27);
    color:#d4d4d8;
    border-radius: 18px;
    padding:2rem;
    border:1px solid #27272a;
}
.profile-details .about{
    font-size:1.2rem;
    line-height:2.5rem;
}
.about-icon-div{
    background-color: #27272a;
    border-radius: 12px;;
}
.intro{
    /* display:inline; */
    font-size: 2.3rem;
}
.highlight{
    font-weight: 600;
    display: inline-flex;
    gap: 10px;
}
.hand-gif{
    width:1.8rem;
    height:1.8rem;
    vertical-align: middle;
}
.contact-container{
    gap: 5px;
    background: rgb(24 24 27);
    padding: 1rem 3rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    border:1px solid #ffffff1a;
    margin-top:12px;
}
.contact-icons{
    gap:15px;
}
.contact-tile{
    color:#fff;
    text-transform: uppercase;
    text-align: center;
}
.contact-container svg{
    width:1.5rem;
    height: 1.5rem;
    color:#d4d4d8;
}
.contact-container svg:hover{
    color:#fff;
    transform: scale(1.1);
    transition-duration: 150ms;
}
.contact-icon{
    text-decoration: none;
    width:1.5rem;
    height: 1.5rem;
}
@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width:768px){
    .main-container{
        flex-direction: column-reverse;
    }
    .profile-image{
        margin-left: auto;
        margin-right: auto;
        width:300px;
    }
    .profile-details{
        gap:2rem;
    }
}