:root {
--color-primary: #5100ff;
--color-primary-accent: #3300ff;
--color-primary-light: #702dff;
--color-white: #ffffff;
--color-muted: #444343;
--text-color: #010101;
--warning: #ffa500;
--danger: #fc605b;
--success: #33c648;
--bg-base: #efeff1;
--bg-base-rgb: 239, 239, 241;
--bg-secondary: #ffffff;
--bg-secondary-rgb: 255, 255, 255;
--radius-1: 4px;
--radius-2: 0.8rem;
--radius-3: 1.2rem;
--radius-4: 2rem;
--radius-5: 100%;
--gray-border: 1px solid rgba(89, 88, 88, 0.633);
--transition: all 400ms ease;
--gradient-1: linear-gradient(
260deg,
var(--color-primary-accent) 0%,
var(--color-primary) 100%
);
--box-shadow-1: 0 4px 8px rgba(0, 0, 0, 0.2);
--border-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075),
0 0 0 1px hsla(0, 0%, 0%, 0.05), 0 0.3px 0.4px hsla(0, 0%, 0%, 0.02),
0 0.9px 1.5px hsla(0, 0%, 0%, 0.045), 0 3.5px 6px hsla(0, 0%, 0%, 0.09);
}

[data-theme="dark"] {
--color-muted: #a1a0a0;
--text-color: #ffffff;
--bg-base: #0a0a0c;
--bg-base-rgb: 10, 10, 12;
--bg-secondary: #171719;
--bg-secondary-rgb: 23, 23, 25;
--gray-border: 1px solid rgba(70, 68, 68, 0.633);
--box-shadow-1: 0 4px 8px rgba(185, 185, 189, 0.2);
--border-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.188),
0 0 0 1px hsla(0, 2%, 13%, 0.05), 0 0.3px 0.4px hsla(0, 2%, 13%, 0.05),
0 0.9px 1.5px hsla(0, 2%, 36%, 0.045), 0 3.5px 6px hsla(0, 1%, 20%, 0.09);
}

/* general style */

*{
    /* all contents */
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}
html, body{
    min-height: 100vh;
    font-family: "Sora";
    background: var(--bg-base);
    color: var(--text-color);
    scroll-behavior: smooth;
    scrollbar-color: var(--color-primary) transparent;
    scrollbar-width: thin;
}
body{
    overflow: hidden;
    overflow-y: auto;
    max-width: 2000px;
    margin: auto;
}
img{
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}
a{
    display: inline-block;
    color: var(--text-color);
}
p {
    font-size: 15px;
    line-height: 19px;
}

.bg__base{
    background: var(--bg-base);
}
.bg__secondary{
    background: var(--bg-secondary);
}
.text__muted{
    color: var(--color-muted);
}
.text__white{
    color: var(--color-white);
}
.primary{
    color: var(--color-primary);
}
.container{
    width: 100;
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px 120px 20px;
    overflow: hidden;
}
.flex{
    display: flex;
}
.flex__center{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.section__header{
    text-align: center;
    max-width: 600px;
    margin: auto;
}
.section__header > .description {
    font-size: 16px;
    margin-top: 10px;
}
.profile{
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    max-width: 3rem;
    max-height: 3rem;
    overflow: hidden;
    border-radius: var(--radius-5);
}
.icon__container{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    opacity: 0.8;
    font-size: 20px;
}
.icon__container:hover{
    transform: scale(1.2);
    color: var(--text-color);
    opacity: 1;
}
.btn{
    padding: 15px 25px;
    border-radius: var(--radius-2);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    background: var(--bg-secondary);
    transition: var(--transition);
}
.btn:hover{
    color: var(--color-primary-accent);
}
.btn__primary{
    background: var(--gradient-1);
    color: var(--color-white);
}
.btn__primary:hover{
    background: transparent;
    box-shadow: 0 0 1px 2px var(--color-primary);
    color: var(--color-primary);
}
.line__clamp__1{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-clamp: 4;
}

.spotlight{
    position: absolute;
    width: 322px;
    height: 308px;
    background: var(--color-primary);
    background: linear-gradient(190deg, var(--color-primary) 0%, transparent 100%
    );
    border-radius: 50%;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 1;
}
.title{
    font-size: 55px;
    font-weight: 600;
    margin: 20px;
}
.sub__title{
    font-size: 30px;
    font-weight: 500;
}

.MyLogo svg {
    width: 2.5rem;
    height: 2.5rem;
}
.social__handles{
    align-items: center;
    gap: 15px;
}

/* Responsive  */
@media only screen and (max-width: 900px){
    .title{
        font-size: 40px;
    }
}
@media only screen and (max-width:600px) {
    .btn{
        font-size: 12px;
    }
    .title{
        font-size: 30px;
    }
    .sub__title {
        font-size: 20px;
    }
}