body{
    height: 100% !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(1fr 2fr);
}

.hidden {
    visibility: hidden;
    height: 0;
}

.navbar {
    /* float: left !important; */
    height: 100% !important;
    width: 20vw !important;
    display: block !important;
    position: fixed !important;
    border-right: 3px solid orange !important;
    border-radius: 15px;
    box-shadow: 5px 0px 5px #4f412b !important;
}

#navLinks {
    border: none !important;
    border-left: none !important;
    margin-left: 3vw !important;
}

.navImage {
    border: 5px solid orange !important;
    border-radius: 50% !important;
    box-shadow: 5px 5px 5px #4f412b !important;
}

.navbar .navbar-nav{
    display: block !important;
}

#logoCard {
    outline: none !important;
    border: none !important;
}

@media screen and (max-width : 992px){
    .navbar {
        float: left !important;
        height: 100% !important;
        width: 15vw !important;
        display: block !important;
        position: fixed !important;
    }

    .navbar .navbar-nav{
        display: block !important;
    }

    #logoCard {
        display: none;
    }
}

main{
    margin-left: 345px !important;
    height: 100vh !important;
    width: 75vw !important;
    /* float: right !important; */
    /* position: relative; */
}

.hpName {
    font-size: 42px;
    font-weight: bold;
    display: flex;
    column-gap: 10px;
    text-decoration: none !important;
}


.vrBar {
    margin-top: 10px;
    background-color: orangered;
    height: 47px;
    width: 8px;
}

.progLang {
    color: #c6c4c4;
}

#text{
    position: absolute;
    transition: 0.3s ease-in-out;
}

#text:hover {
    cursor: pointer;
}

#someDescription{
    font-size: 18px;
}

.navIcons {
    margin-right: 5px;
    margin-left: 10px;
}

.progCard{
    border-radius: 4px;
    box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05);
    transition: .3s ease-in-out;
    padding: 2px 4px 2px 4px !important;
    cursor: pointer;
    min-height: 30vh !important;
    max-height: 30vh !important;
    min-width: 18vw !important;
    max-width: 30vw !important;
}

.progCard:hover{
    transform: scale(0.98);
    color: white !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0,0,0,.06);
}

.progCard h3{
    font-weight: 600;
}

.progCard img{
    position: absolute;
    top: 20px;
    right: 15px;
    max-height: 120px;
}

.progCard .btn {
    float: right !important;
}

.carouselCSS{
    min-height: 25vh !important;
}