:root {
    --saleshcustomcolor: #FDA000;
}


html {
    scroll-behavior: smooth;
}


@keyframes salesh-shadow {
    0% {
        box-shadow: 0x 0px 0px #fda000cc;
    }

    50% {
        box-shadow: 5px -5px 0px #fda000cc;
    }

    100% {
        box-shadow: 0px 0px 0px #fda000cc;
    }
}

@keyframes salesh-shadow2 {
    0% {
        text-shadow: 0x 0px 0px #fda000cc;
    }

    50% {
        text-shadow: 5px 5px 0px #fda000cc;
    }

    100% {
        text-shadow: 0px 0px 0px #fda000cc;
    }
}


h2 {
    border-bottom: 1px solid white;
    width: 80%;
    padding-bottom: 4px;
}

.salesh-custom-text {
    color: var(--saleshcustomcolor);
    animation: salesh-shadow22 ease 2s infinite 1s;
}


.salesh-sidebar-logo {
    margin: 15px;
}

.salesh-heading2 {
    font-size: 24px;
    color: var(--saleshcustomcolor);
    font-family: Open Sans;
}

.salesh-playbtn {
    color: #fafafa;
    border-radius: 0.5rem;
    background: transparent;
    border: 1px solid;
    padding: 8px;
    transition: background-color .5s;
}

.salesh-playbtn a {
    color: #fafafa;
    font-weight: bold
}

.salesh-playbtn:hover {
    background-color: #FDA000;
    border-color: #FDA000;
}

.line80 {
    border-bottom: 1px solid white;
    width: 80%;
    padding-bottom: 4px;
}

.salesh-underbold {
    font-weight: bold;
    text-decoration: underline;
}