body,
html {
    margin: 5vh 3vw;
    padding: 0;
    background-color: white;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: crosshair;
}

@media screen and (max-width: 48em) {
    body {
        padding-top: 10vh 0;
    }
}

.col_left {
    padding: 3vh 1vw;
    background-color: white;
}

.right_col {
    padding: 3vh 1vw;
    background-color: white;
}

.para_pad_left {
    padding: 0 2vw;
}

h1 {
    font-weight: 500;
    font-size: 26px;
}

h2 {
    font-weight: 500;
    font-size: 23px;
}

.col-left-logo {
    border-radius: 42%;
    margin-bottom: 12px;
}

button::-moz-focus-inner {
    border: 0;
}

.social-icons {
    padding: 8px 16px;
    border-radius: 16px;
    cursor: none;
    -webkit-transition: all 250ms ease-in;
    -ms-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
    background-color: white;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.social-icons:hover {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -moz-transform: scale(1.15);
    transform: scale(1.15);
    background-color: whitesmoke;
}

.gradient_background {
    padding: 12px 22px;
    border-radius: 16px;
    cursor: pointer;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 7s ease infinite;
    border: none;
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#snackbar {
    visibility: hidden;
    min-width: 240px;
    background-color: slategray;
    color: white;
    text-align: center;
    padding: 16px;
    position: fixed;
    z-index: 10;
    bottom: 30px;
    border-radius: 16px;
    margin-left: 7vw;
    max-width: 96vw;
    font-size: 14px;
    box-shadow: 0px 0px 38px -10px rgba(117, 117, 117, 0.47);
    -webkit-box-shadow: 0px 0px 38px -10px rgba(117, 117, 117, 0.47);
    -moz-box-shadow: 0px 0px 38px -10px rgba(117, 117, 117, 0.47);
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4.5s;
    animation: fadein 0.5s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

.project-card {
    padding: 2vh 2vw;
    cursor: none;
    -webkit-transition: all 250ms ease-in;
    -ms-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
    border-radius: 16px;
    max-width: 480px;
    margin: 10px;
}

.namastegaon:hover {
    background-color: #F7F3FA;
}

.notesbundle:hover {
    background-color: #f7fbef;
}

.project-card:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
}

.project_desc {
    color: dimgray;
}

.generic:hover {
    background-color: whitesmoke;
}

td {
    padding: 2px;
    vertical-align: middle;
}

.project_duration {
    border-radius: 12px;
    padding: 4px 16px;
    font-size: 12px;
    background-color: whitesmoke;
}

.in-news-card-date {
    color: dimgray;
    font-size: 13px;
    vertical-align: middle;
}

.header-home-div {
    height: 42px;
    width: 42px;
    background-color: white;
    border-radius: 16px;
    position: fixed;
    cursor: none;
    right: 4vw;
    top: 4vh;
    align-items: center;
}

.header-home-div:hover {
    background-color: whitesmoke;
}

.header-home-btn {
    height: 24px;
    margin: 8px;
    width: 24px;
}

.profile-card {
    text-align: center;
    display: inline-block;
    border-radius: 16px;
    padding: 16px;
    margin: 8px;
    cursor: none;
    -webkit-transition: all 250ms ease-in;
    -ms-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
    color: black;
    text-decoration: none;
    min-width: 128px;
}

.profile-card:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
    background-color: whitesmoke;
}

.profile-card-img {
    border-radius: 42%;
    margin: 6px;
}

.div-bottom {
    margin: 6vh 0;
}

.about-project-desc {
    color: #222;
    line-height: 1.5;
}

.a-highlight {
    background-color: whitesmoke;
    cursor: pointer;
    -webkit-transition: all 250ms ease-in;
    -ms-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
    color: black;
    text-decoration: none;
}

.a-highlight:hover {
    color: slategray;
}

.a-highlight::after {
    content: " 🡥";
}

.designation {
font-size: 16px;
vertical-align: middle;

}
