@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: blur(500px);
}

/* Media query for phone view */
@media (max-width: 600px) {
    .wrapper {
        filter: blur(200px);
    }

    .gradient-2, .gradient-3 {
        width: 300px;
        height: 300px;
        left: 50%;
        top: 50%;
    }
}

body {
    margin: 0;
    background-color: #000;
    padding: 0; 
    color: #ffffff;

}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 600;
}

.navbar a {
    float: left;
    font-size: 18px;
    color: #ededed;
    text-decoration: none;
    font-weight: 500; 
    margin-left: 35px;
    transition: .5s;
    
}

.navbar a:hover {
    color: rgb(94, 255, 0);   
}

.navbar a.active {
    background-color: #04AA6D;
    color: white;
}

.navbar-right {
    float: right;
}

@media screen and (max-width: 600px) {
    .navbar a {
        float: none;
        display: block;
        text-align: left;  
        width: 100%;
    }

    .navbar-right {
        float: none;
    }
}

.home {
    height: 100vh;
    background: url();
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #00ff7b;
}

.home-content p {
    font-size: 16px;
    margin: 10px 0 40px;
}

.home-content .btn-box {
    display: flex;
    justify-content: space-around;
    width: 345px;
    height: 50px;
}

.btn-box a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 100%;
    background: #00ffb7;
    border: 2px solid #00f070;
    border-radius: 8px;
    font-size: 19px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
}

.btn-box a:nth-child(1) {
    background: transparent;
    color: #00ffb7;
}

.btn-box a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(32, 32, 32, 0.429);
    border-radius: 6px;
    z-index: -1;
    transition: .5s;
}

.btn-box a:hover::before {
    width: 100%;

}

.home-sci {
    position:absolute;
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #00f070;
    border-radius: 50%;
    font-size: 20px;
    color: #00f070;
    text-decoration: none;
    overflow: hidden;
}

.home-sci a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        z-index: -1;
        transition: .5s;
}

.home-sci a:hover::before {
    width: 100%;
}


