*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
    font-family:Georgia, 'Times New Roman', Times, serif;

}
:root{
    --background: rgb(24,24,24);
    --second-background: rgb(21,21,21);
    
}
body{
    min-height: 100vh;
    background-color: var(--background);
}
nav{
    position: sticky;
    height: 80px;
    top: 0;
    width: 100%;
    padding: 2em 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(31, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;

}
ul{
    display: flex;
    align-items: center;
    gap: 3em;

}
nav ul a{
    color: rgb(255, 255, 255);
    opacity: 0.5;
    transition: 0.2s ease-in-out;
}
nav ul a:hover{
opacity: 1; 
color: rgb(133, 49, 178);
}
.logo{
    font-size: 2em;
    color: white;
    font-weight: 800;
    opacity: 0.8;
    transition: 0.2s ease-in-out;
}
.logo:hover{
    opacity: 1;
    color:rgba(155, 45, 250, 0.8) ;
}
.btn{
    padding: 0.5em 1em;
    color: white;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 0.5em;
    font-size: 1.1em;
    border: 2px solid white;
    cursor: pointer;  
    transition: 0.3s ease-in-out;
}
.btn:hover {
    background-color: white;
    color: var(--background);
}
span{
    background: linear-gradient(to right, rgb(165, 62, 249), rgb(84, 131, 225));
    background-clip: text;
    color: transparent;
}
#menu{
    color: white;
    font-size: 3em;
    display: none;
}
section {
    min-height: 100vh;
    padding: 5% 15%;
}
#Home{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 2em;
    color: white;
}
#Home img{
    width: 18vw;
    border-radius: 80%;
    margin-top: 0;
    object-fit: cover;
    width: 300px;
    height: 300px;
}
.info-box{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.5em;
    max-width: 1200px;
    width: 100%;
}
.info-box h1{
    font-size: 5em;
    font-weight: 500;
    max-width: 1200px;
}
.info-box h3{
    font-size: 2em;
    font-weight: 400;
    color: white;
}
.info-box p{
    opacity: 0.7;
    color: white;
}
.btn-box{
    display: flex;
    gap: 1em;
    
}
.btn-box .btn:nth-of-type(2){
    background-color: white;
    color: var(--background);
}
.btn-box .btn:nth-of-type(2):hover{
    background-color: var(--background);
    color: white;
}

::-webkit-scrollbar{
    width: 20px;
    background-color: var(--background);
}
::-webkit-scrollbar{
    background: linear-gradient(to bottom, #953784, #4699bf);
}
