.container {
    display: flex;
    flex-direction: none;
    justify-content: space-around;
    align-items: center;
    padding-top: 3rem;
}

.container .hero-pic {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid #2484f9;
    box-shadow: 5px 7px 25px rgb(0, 0, 0, 0.5);
}

.hero-pic img {
    height: 100%;
    width: 100%;
    transition: 0.5s;
}

.hero-pic img:hover {
    transform: scale(1.8);
}

.home-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.home-content h5 {
    color: white;
    font-size: 20px;
}

.home-content h5 span {
    color: yellow;
    font-size: 26px;
}

.home-content h1 {
    color: yellow;
}

.home-content p {
    color: white;
    font-size: 20px;
}

.btn-group {
    margin: 15px 0;
}

.btn.active {
    border-color: #0ef;
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #007ced;
    border-radius: 40px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 3px #0ef,
        0 0 20px #0ef;
    transition: .5s ease;
    margin-right: 10px;
}

.btn-box+.btn-box {
    margin-left: 10px;
}

.btn-box:hover {
    box-shadow: 0 0 5px cyan,
        0 0 25px cyan, 0 0 50px cyan,
        0 0 100px cyan, 0 0 200px cyan;
}

.home-content .home-sci i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid lightseagreen;
    border-radius: 50%;
    font-size: 20px;
    color: lightseagreen;
    text-decoration: none;
    margin: 30px 15px 30px 0;
    transition: .5s ease;
}

.home-content .home-sci i:hover {
    background: #007ced;
    color: #081b29;
    box-shadow: 0 0 20px #0ef;
    transform: rotate(360deg);
}

hr {
    border: none;
    height: 2px;
    background-color: black;
    margin: 50px 0;
}



@media screen and (max-width: 768px) {

    .container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding-top: 3rem;
    }

    .container .hero-pic {
        width: 330px;
        height: 300px;
        border-radius: 50%;
        overflow: hidden;
        border: 15px solid #2484f9;
        box-shadow: 5px 7px 25px rgb(0, 0, 0, 0.5);
    }
    
    .hero-pic img {
        height: 100%;
        width: 100%;
        transition: 0.5s;
    }
    
    .hero-pic img:hover {
        transform: scale(1.8);
    }
    
    .home-content {
        max-width: 300px;
        display: flex;
        flex-direction: column;
        margin-top: 5%;
        margin-left: -1rem;
    }
    
    .home-content h5 {
        color: white;
        font-size: 20px;
    }
    
    .home-content h5 span {
        color: yellow;
        font-size: 26px;
    }
    
    .home-content h1 {
        color: yellow;
    }
    
    .home-content p {
        color: white;
        font-size: 20px;
    }
    
    .btn.active {
        border-color: #0ef;
    }
    
    .btn-box {
        background: #007ced;
        border-radius: 40px;
        font-size: 16px;
        color: #081b29;
        letter-spacing: 1px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 0 3px #0ef,
            0 0 20px #0ef;
        transition: .5s ease;
        display:inline-flex;
        margin-bottom: 10%;
    }
    
    .btn-box+.btn-box {
        margin-left: 2px;
    }
    
    .btn-box:hover {
        box-shadow: 0 0 5px cyan,
            0 0 25px cyan, 0 0 50px cyan,
            0 0 100px cyan, 0 0 200px cyan;
    }
    
    .home-content .home-sci i {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: 2px solid lightseagreen;
        border-radius: 50%;
        font-size: 20px;
        color: lightseagreen;
        text-decoration: none;
        margin: 30px 15px 30px 0;
        transition: .5s ease;
    }
    
    .home-content .home-sci i:hover {
        background: #007ced;
        color: #081b29;
        box-shadow: 0 0 20px #0ef;
        transform: rotate(360deg);
    }
    
    hr {
        border: none;
        height: 2px;
        background-color: black;
        margin: 50px 0;
    }
    
}
