@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


header{
    background-color: rgb(0, 0, 0);
 
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
}


body{
    background-color: rgb(44, 44, 44);
}




.logo{
    text-decoration: none;
    color:yellowgreen;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.8em;
}

.logo span{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.5em;
    text-decoration: none;
}


.navigation a{
    color: yellowgreen;
    text-decoration: none;
    font-size: 1.7em;
    font-weight: 500;
    padding-left: 30px;
}
.navigation a:hover{
    color: gray;
}

section{
    padding:100px 200px;
}

.main{
    color: gray;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(2.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.main h2{
    color: rgb(0, 0, 0);
    font-weight: 500;
    font-size: 1.4em;
}

.main h2 span{
    color: rgb(219, 219 ,219);
    font-weight: 600;
    font-size: 3em;
    display: inline-block;
    margin-top: 10px;
    -webkit-text-stroke: 1px;
    -webkit-text-fill-color: rgb(219, 219 ,219);
    -webkit-text-stroke-color: black;
}

.main h3{
    color:yellowgreen;
}


.social-icon a{
    padding-right: 60px;
    color: yellowgreen;
    font-size: 1.7em;
}

.info h3{
    color: rgb(219, 219 ,219);
    font-size: 1.3em;
    font-weight: 600;
    
    margin-top: 100px;
    
    display: flex;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}

.title{
    color: rgb(219, 219 ,219);
    text-transform: uppercase;
    
    display: flex;
    justify-content: center;
    font-size: 2em;
    font-weight: 600;
    margin-top: 60px;
    -webkit-text-stroke: 1px black;
    -webkit-text-fill-color: rgb(219, 219 ,219);
}

.footer{
    background-color: black;
    color: rgb(219, 219 ,219);
    display: flex;
    justify-content: space-between;
    padding: 2em;
}

.footer p{
    font-size: 1.3em;
    font-weight: 500;
}

.footer p span{
    color: rgb(76, 90, 151);
    font-size: 1.4em;
    font-weight: 700;
}
    
