body {
    padding-top: 70px;
}
.hero-section {
    color: white;
    padding: 100px 0;
    text-align: left;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main{
    background: #011a2f;
}

main.content {
    flex: 1;
}

.nav-link {
    position: relative;
    color: white;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.4s ease-in-out;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

body {
        font-family: 'Open Sans', sans-serif;
        background-color: #0d1117;
        color: #dce8fc;
    }

    .hero-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 60px 15px;
        text-align: justify;
    }

    .hero-text {
        flex: 1 1 500px;
        padding-top: 7%;
        padding-bottom: 2%;
    }

    .hero-text h1 {
        font-weight: bold;
        color: #ffffff;
    }

    .hero-text p {
        font-size: 1.1rem;
        max-width: 700px;
        line-height: 1.6;
        color: #dce8fc;
    }

    .profile-wrapper {
        flex: 1 1 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .profile-image {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        object-fit: fill;
        border: 4px solid #dce8fc;
        position: relative;
        z-index: 2;
    }

    .circle-rotate {
        position: absolute;
        width: 300px;
        height: 300px;
        border: 2px dashed #4dabf7;
        border-radius: 50%;
        animation: rotate 80s linear infinite;
        z-index: 1;
    }

    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
        .hero-container {
            flex-direction: column-reverse;
            text-align: center;
        }

        .hero-text p {
            margin: 0 auto;
            
        }

        .profile-image {
            width: 200px;
            height: 200px;
        }

        .circle-rotate {
            width: 220px;
            height: 220px;
        }
    }
    
    @media (max-width: 992px) {
        .hero-container {
            flex-direction: column-reverse;
            text-align: center;
        }
        .hero-text{
            padding: 0 0;
        }
    }

