@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    outline: none;

}

:root {
    --bg-color: #000000;
    --second-bg-color: #323946;
    --main-color: #7cf03d;
    --white-color: #fff;
    --disabled-color: #fff3;


}

html{
    font-size: 62.5%;

}

body {
    color: var(--white-color)
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 2rem 9%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    
}

.logo {
    font-size: 3rem;
    color: var(--white-color);
    font-weight: 700;
    


    
}
.logo::first-letter{
    font-size: 6rem;
    font-family: "Nabla", serif;
    color:var(--main-color);
}


nav a {
    font-size: 2rem;
    color: var(--white-color);
    font-weight: 500;
    margin-left: 3.5rem;

    
}

nav a:hover,
nav a.hom {
    color: var(--main-color);
}
body{
    background-color: var(--bg-color);
}

.section-about{
    position:fixed;
    top:17rem;
    left:14rem;
    background:var(--bg-color);
    font-size: 3rem;
    font-weight: 300;
}






.section-about h2::first-letter{
    font-size: 6rem;
    color:var(--main-color)

}

.section-about p{
    font-size:1.8rem;
    margin-bottom: 2rem;

}

.section-more{
    margin-top:3vw;
    width:88vw;
    height:20vw;
    /* background: white; */
    display:flex;
    justify-content: space-between;
    overflow: auto;
}

.more-discription{
    max-height: 100%;
    min-width:24%;
    display: inline-block;
    border:2px solid white;
    border-radius:25px;
    box-shadow: 0 0 1rem var(--main-color);
    padding:0.7vw;
    margin:1vw;
    transition-duration: 0.5s;
   

}

.more-discription:hover{
    scale:1.06
}
.head{
    color:rgb(249, 188, 75);
}
.discription {
    color: aliceblue;
    font-family:"Teko", serif;
    margin-top:1.5vw;
    font-family:"Teko", serif ;
    margin-top: 0.7vw;
    margin-bottom: 0.3vw;

    
}
.a{
    text-align: center;
    color: aliceblue;
    font-family:"Teko", serif;
    margin-top:1.5vw;
    font-family:"Teko", serif ;
    margin:1vw 0;
    
    
}



hr{
    position:relative;
    top:-15px;
    border: 1px solid green;

}



