@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap');

:root {
    --color-purple: #3e0e2f;
    --color-white: white;
    --color-text: #7b175c;
}

body {
    padding-left: 60px;
    padding-right: 60px;
}


.full-height {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
    /* border-bottom: 2px solid rgba(255, 255, 255, 0.1); */
}

.text-brand {
    color: var(--color-text);
}

.bg-color {
    background-color: var(--color-purple);
}

a {
    text-decoration: none;
    color: var(--color-purple);
    transition: all 0.4s ease;
}

a:hover {
    color: var(--color-brand);
}

.link-custom {
    font-weight: 700;
    position: relative;
}

.link-custom::after {
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--color-purple);
    position: absolute;
    left: 0;
    top: 110%;
    transition: all 0.4s;
}

.link-custom:hover::after {
    width: 100%;
}

.link-custom:hover::after {
    width: 100%;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--color-purple);
    color: white;
    cursor: pointer;
    height: 50px;
    width: 50px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}


@media (max-width: 991px) {
    body {
        padding-left: 20px;
        padding-right: 20px;
        /* padding-right: 10px; */
    }
}

.element1 {
    transition: 1s;
    font-size: 20px;
    letter-spacing: normal;
}

.element1:hover {
    letter-spacing: .5em;
}