*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#0f1117;
    color:white;
}

/* Navbar */

nav{
    width:100%;
    height:70px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 8%;

    background:#151a23;

    position:fixed;
    top:0;
}

nav h2{
    color:#3cff73;
}

nav div{
    display:flex;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    color:#3cff73;
}

/* Hero */

.hero{

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;

    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7)),
    url("assets/bg.jpg.jpg");

    background-size:cover;
    background-position:center;

}

.hero h1{

    font-size:60px;
    margin-bottom:15px;

}

.hero p{

    font-size:22px;
    color:#cfcfcf;

}

button{

    margin-top:35px;

    padding:15px 35px;

    border:none;

    border-radius:10px;

    background:#3cff73;

    color:#111;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    transform:scale(1.05);

    background:#25db5b;

}