: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;
}

.cover-area {
    background-image: url("images/cover/life.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;
}

.card {
    border: none;
}

.selectedTab {
    font-weight: 500;
}

.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;
}

.carousel-item {
    border: 5px solid aliceblue;
}

.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;
}

.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(40, end) forwards,
      blink 0.8s infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    from { border-color: transparent }
    to { border-color: white; }
}