:root {
    color-scheme: light dark;
}

body,
html {
    height: 100%;
    margin: 0;
    margin: auto;
    background-color: aliceblue;
    /* aliceblue, azure, lightcyan, mintcream */
}

button#connect {
    background-color: white !important;
    border: 1.5px solid white !important;
    font-size: large !important;
}

button#connect:hover {
    border: 1.5px solid #4458dc !important;
}

button#connect>span>a {
    background: linear-gradient(to right, blue, indigo, red);
    background-clip: text;
    color: transparent;
}

button#connect>span>a:hover {
    background: linear-gradient(to left, blue, indigo, red);
    background-clip: text;
    color: transparent;
}

.fw-400 {
    font-weight: 400 !important;
}

.selectedTab {
    font-weight: 500;
}

.cover-area {
    background-image: url("images/cover/win.jpg");
    height: 100%;
    background-position: center;
    background-size: cover;
    background-color: white;
    top: 70px;
    color: white;
    overflow: hidden;
}

.vr {
    color: blue;
}

section {
    background-color: white;
}

.exp {
    background: linear-gradient(to right, blue, indigo, red);
    background-clip: text;
    color: transparent;
    cursor: pointer;
}

.exp:hover {
    background: linear-gradient(to left, blue, indigo, red);
    background-clip: text;
    color: transparent;
}

.displayNone {
    display: none;
}

ul.navbar {
    padding-top: 4px;
    padding-bottom: 4px;
}

#myImage {
    max-width: 240px;
    border-radius: 75px;
}

#headNav {
    background-color: white !important;
    padding-top: 0px;
    padding-bottom: 0px;
}

#headNav li.nav-item {
    cursor: pointer;
}

#headNav li.nav-item:hover {
    background-color: lightcyan;
}

#headNav .nav-link {
    background: linear-gradient(to right, blue, indigo, red);
    background-clip: text;
    color: transparent;
}

#certifications img {
    max-width: 150px;
}

#certifications .card, #experience .card {
    align-items: center;
    text-align: center;
    transition: all 0.4s ease 0s;
    background-color: #f9f9fd;
    color: black;
    border: none;
}

#certifications .card:hover, #experience .card:hover {
    box-shadow: 0px 15px 30px rgba(77, 87, 222, 0.3);
    color: black;
    background: #fff;
}

#certifications .card-text, #experience .card-text {
    font-weight: 500;
}

#tutorials .card {
    transition: all 0.4s ease 0s;
    background-color: #f9f9fd;
    color: black;
    border: none;
}

#tutorials .card:hover {
    box-shadow: 0px 15px 30px rgba(77, 87, 222, 0.3);
    color: black;
    background: #fff;
}

#tutorials img {
    max-width: 100px;
}

#tutorials div.col-md-4 {
    align-items: center;
    text-align: center;
}

#tutorials a.extLinks {
    color: darkslategray;
    text-decoration: none;
    font-weight: 500;
}

#tutorials a.extLinks:hover {
    color: teal;
    text-decoration: underline;
}

#experience img {
    max-width: 125px;
}

.social {
    width: 40px;
}

.social-lg {
    width: 56px;
}

.social:hover,
.social-lg:hover {
    transition: transform .2s;
    transform: scale(1.5);
    cursor: pointer;
}

.custom-bs-tooltip {
    --bs-tooltip-bg: #2e86c1;
    --bs-tooltip-color: white;
}

.badge {
    font-weight: normal;
    font-size: inherit;
    line-height: 1.5;
    margin-top: 10px;
    margin-right: 10px;
    color: white !important;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 12px;
}

.expert {
    background: linear-gradient(to right, #2e86c1, #1abc9c) !important;
}

.comfortable {
    background: #2e86c1 !important;
}

.learning {
    background: linear-gradient(to right, #2e86c1, #ec7063) !important;
}

.sample {
    width: 120px;
}

.classificationLabel {
    font-weight: 600;
    font-size: large;
    margin-right: 20px;
}

.fsBy20 {
    font-size: 1.2rem;
}

.mw175 {
    min-width: 175px;
}

.typed-out {
    overflow: hidden;
    border-right: .15em solid white;
    white-space: nowrap;
    font-size: 1.6rem;
    width: 0;
    animation: 
      typing 2s steps(36, end) forwards,
      blink 0.8s infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    from { border-color: transparent }
    to { border-color: white; }
}