body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-image: url("./background.jpg");
    background-color: rgb(30, 66, 39);
    background-size: 120%;
}

.modal {
    background: rgba(0, 0, 0, 0.6);
}

.modal-backdrop {
    display: none;
}

.modal-dialog {
    margin-top: 200px;
}

.card {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 40px auto;
    height: 80vh;
    background: rgba(255, 255, 255, 0.432);
    border: 1px solid white;
    border-radius: 5px;
    backdrop-filter: blur(3px);
}

.picture {
    display: block;
    margin: 0px auto;
    width: 100%;
    background: url('./banner.jpg');
    background-size: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: 130px;
}

.picture>img {
    display: block;
    width: 140px;
    height: 140px;
    margin: 60px auto;
    border: 1px solid rgb(243, 80, 216);
    border-radius: 15rem;
}

.name {
    width: 100%;
    margin: 85px auto 0px auto;
    color: rgb(32, 12, 41);
    text-align: center;
}

.name h3 {
    font-family: 'Kanit', sans-serif;
}

.detail {
    margin: 0px auto;
    color: rgb(90, 15, 124);
    text-align: center;
}

.detail p {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
}

.coffee {
    margin: 10px auto;
    width: 90%;
    text-align: center;
}

.coffee>button {
    margin: 10px 5px;
}


.name>p {
    font-size: 20px;
}

.about {
    margin: -15px auto;
    width: 100%;
    text-align: center;
}

.about>p {
    margin-bottom: 1px;
    font-family: 'Open Sans', sans-serif;
}

.social {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    margin: 10px auto;
}

.qrcode {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45px;
    text-align: center;
    background-color: rgba(167, 211, 247, 0.329);
    border: 1px solid white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

}
.qrcode button {
    margin-top: 7px;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    cursor: pointer;
    background-color: white;
}

#name {
    font-family: 'Dancing Script', cursive;
}

.fa-heart {
    color: rgb(207, 53, 53);
}

.social button {
    background-color: #e463c4;
    margin-top: 15px;
    border-radius: 100px;
    box-shadow: rgba(175, 40, 141, 0.2) 0 -25px 18px -14px inset, rgba(187, 44, 115, 0.15) 0 1px 2px, rgba(196, 51, 140, 0.15) 0 2px 4px, rgba(182, 44, 187, 0.15) 0 4px 8px, rgba(175, 44, 187, 0.15) 0 8px 16px, rgba(187, 44, 123, 0.15) 0 16px 32px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-block;
    font-family: CerebriSans-Regular, -apple-system, system-ui, Roboto, sans-serif;
    padding: 7px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 250ms;
    border: 0;
    font-size: 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.button-33:hover {
    box-shadow: rgba(44, 187, 99, .35) 0 -25px 18px -14px inset, rgba(44, 187, 99, .25) 0 1px 2px, rgba(44, 187, 99, .25) 0 2px 4px, rgba(44, 187, 99, .25) 0 4px 8px, rgba(44, 187, 99, .25) 0 8px 16px, rgba(44, 187, 99, .25) 0 16px 32px;
    transform: scale(1.05) rotate(-1deg);
}
.button-8 {
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 100px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.button-8:before {
    content: "";
    background: linear-gradient(45deg,
            #ff0000,
            #ff7300,
            #fffb00,
            #48ff00,
            #00ffd5,
            #002bff,
            #7a00ff,
            #ff00c8,
            #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 100px;
}
@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}
.button-8:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 100px;
}
