* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    text-decoration: none;
    font-family: system-ui;
}

:root {
    --bg-color: #080808;
    --second-bg-color: #101010;
    --text-color: white;
    --main-color: #8c00ff;

}
html {
    font-size: 60%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    background: var(--bg-color);
    color: var(--text-color)
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 4rem 15%;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}
@media screen and (max-height: 500px) {
    .header {
        height: 5%
    }
}
@media screen and (min-height: 501px) {
    .header {
        height: 10%
    }
}
@media screen and (max-width: 500px) {
    .header {
        font-size: 1.4rem;
    }
}
@media screen and (min-width: 501px) {
    .header {
        font-size: 1.8rem;
    }
}

@media screen and (max-width:700px) {
    section{
    min-height: 30vh;
    padding: 12rem 10%;
    }
}
@media screen and (min-width:701px) {
    section {
    min-height: 30vh;
    padding: 12rem 27%;
    }
}

@keyframes appear{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }

}

#menu-icon {
    font-size: 3.5rem;
    color: var(--main-color);
    display: none;
}
.logo {
    font-size: 3rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.logo:hover {
    transform: scale(1.15);
}
span{
    background: linear-gradient(
        270deg,
        #7811ff 10%,
        #dc2aff 100%
    );
    background-clip: text;
    color: transparent;
}

.navbar a{
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 1000;
    transition: 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
}

.navbar a:hover{
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
}

.home{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15rem;
}
.home-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-content h1{
    font-size: 8rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
}
.home-content h1:scroll{
    transform: scale(1.5);
}

.home-content h3{
    margin: 1rem 0;
    font-size: 4rem;
}
.home-content p{
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
}

.social-icons a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    padding: 1rem;
    background: transparent;
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 0.5rem;
    transition: 0.3s ease-in-out;
}

.social-icons i.twitter{
    background-image: url('./Images/Icons/x.ico');
    filter: brightness(0.9);
    height: 32px;
    width: 32px;
    display: block;
    transition: 0.5s ease-in-out;
}

.social-icons i.github{
    background-image: url('./Images/Icons/github.ico');
    filter: brightness(0.9);
    height: 32px;
    width: 32px;
    display: block;
    transition: 0.5s ease-in-out;
}

.social-icons a:hover{
    color: var(--text-color);
    background-color: var(--main-color);
    transform: scale(1.2)translateY(-3px);
    box-shadow: 0 0 25px var(--main-color);
    i {
        filter: brightness(0) invert(1);
    }
}
.btn-group {
    display: flex;
}
.btn{
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 3rem;
    font-size: 1.8rem;
    color: var(--text-color);
    border: 2px solid transparent;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}
.btn:hover{
    transform: scale(1.1);
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color);
}

.about {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10rem;
    background-color: var(--second-bg-color);
}


.about-content h2{
    font-size: 5rem;
    text-align: left;
}

.about-content p{
    font-size: 1.8rem;
}

.about-content .btn{
    margin: 3rem 0;
}

.stocks {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    gap: 10rem;
}

.stocks h2{
    font-size: 5rem;
    text-align: right;
}

.stocks p{
    font-size: 1.8rem;
    text-align: right;
}

.ai {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--second-bg-color);
    gap: 10rem;
}

.ai h2{
    font-size: 5rem;
    text-align: left;
}

.ai p{
    font-size: 1.8rem;
    text-align: left;
}

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
}

::-webkit-scrollbar-track{
    background-color: var(--bg-color);
}