@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body > * {
    transition: 0.4s;
}

.navbar-content {
    transition: 0.4s;
}

body {
    background: #f5f5f5;
}

.nav {
    transition: 0.2s;
    background: white;
    border-bottom: 1px solid #eee;
    height: 45px;
    display: flex;
    align-items: center;
    width: 100%;
}

    .nav > .navbar-content {
        width: 87%;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.navbar-header {
    font-family: "Roboto";
    font-weight: 500;
}

.navbar-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

    .navbar-links ul li a {
        text-decoration: none;
        display: block;
        color: gray;
        padding: 5 5 5 5px;
        border-radius: 5px;
    }

    .navbar-links ul li:hover a {
        transition: 0.3s;
        background: cornflowerblue;
        color: white;
    }

    .navbar-links ul li a.active {
        transition: 0.3s;
        background: cornflowerblue;
        color: white;
    }



.jumbo {
    padding: 10px;
    font-family: "Roboto";
    border-bottom: 1px solid #eee;
    box-shadow: 10px 10px 71px -67px rgba(0,0,0,0.53) inset;
    padding-bottom: 29px;
    background: white;
}

.jumbo-content {
    width: 74%;
    margin: auto;
    transition: 0.4s;
    padding: 10px;
}

.jumbo > .jumbo-content > * {
    display: block;
}

.jumbo-content > b {
    font-size: 60px;
    font-family: "Roboto";
    color: #0ba5ff;
}


.jumbo > .jumbo-content > span {
    font-size: 12px;
    color: gray;
    margin-left: 5px;
    font-family: "Open Sans"
}

.hero {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

    .hero h1 {
        font-size: 7rem;
        font-weight: 700;
        margin: auto;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: auto;
        margin-top: -10%;
    }

.about-me {
    padding: 60px 20px;
}

.about-card {
    background: white;
    border-radius: 0.5rem;
    padding: 30px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .about-card:hover {
        transform: translateY(-5px);
    }

.social-links a {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #0d6efd;
    transition: color 0.3s;
}

    .social-links a:hover {
        color: #6610f2;
    }

footer {
    background: #343a40;
    color: #f8f9fa;
    padding: 20px;
    text-align: center;
}
