/* Scroll */
html {
    scrollbar-width: auto;
    scrollbar-color: rgb(30 58 138) transparent;
}

/* End Scroll */

/* Body */
body {
    background-color: rgba(0, 0, 0, 0.903);
    height: 100%;
    width: 100%;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.text-shadow-red {
    text-shadow: 0 0 30px #c33;
}

.text-shadow-red-2 {
    text-shadow: 0 0 10px #ffc1c1;
}

.text-shadow-blue {
    text-shadow: 0 0 30px rgb(56, 62, 148);
}

.text-shadow-blue-title {
    text-shadow: 0 0 30px rgb(224, 220, 255);
}

.text-shadow-blue-2 {
    text-shadow: 0 0 10px #c3c1ff;
}

.box-shadow-blue {
    box-shadow: 0 0 10px rgb(30 58 138);
}

.box-shadow-red {
    box-shadow: 0 0 10px rgb(220 38 38);
}

.box-shadow-red-hover {
    box-shadow: 0 0 10px rgb(220 38 38);
}

.box-shadow-red-hover:hover {
    box-shadow: 0 0 10px rgb(255, 255, 255);
}

.box-shadow-blue-hover {
    box-shadow: 0 0 10px rgb(30 58 138);
}

.box-shadow-blue-hover:hover {
    box-shadow: 0 0 10px rgb(255, 255, 255);
}

.box-shadow-blue-inset {
    box-shadow: inset 0 0 20px rgb(30 58 138);
}

.box-shadow-white {
    box-shadow: 0 0 10px rgb(255, 255, 255);
}

.btn-card {
    background: rgba(30 58 138);
    box-shadow: 0 0 5px rgb(255, 255, 255);
}

.btn-card:hover {
    background-color: rgb(220 38 38);
    box-shadow: 0 0 10px rgb(255, 255, 255);
}
/* End Body */

/* Navbar */
.active-menu {
    color: white;
    background-color: rgb(220 38 38);
    padding: 8px;
    font-weight: bold;
    border-radius: 10px;
}

#backToTopButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background-color: rgb(30 58 138);
    box-shadow: 0 0 10px rgb(30 58 138);
    color: white;
    border: none;
    border-radius: 100%;
    cursor: pointer;
    font-size: 20px;
    width: 50px;
    height: 50px;
}

#backToTopButton:hover {
    color: white;
    background-color: rgb(30 58 138);
    box-shadow: 0 0 10px rgb(255, 255, 255);
}

.btn-shadow a {
    box-shadow: 0 0 10px rgb(255, 255, 255);
}
/* End Navbar */

/* Beranda */
.text-title {
    text-shadow: 2px 4px 0 rgb(30 58 138);
}

.btn-more button:hover {
    background-color: rgb(30 58 138);
}

.box-shadow-white button {
    box-shadow: 0 0 10px rgb(255, 255, 255);
}

.truncate-text {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    white-space: normal;
    word-break: break-all;
}

.truncate-text-row {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    white-space: normal;
    word-break: break-all;
}

.thumbnail {
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border: 2px solid rgb(220 38 38);
    padding: 5px;
    border-radius: 2px;
}

.thumbnail.active img {
    height: 70px;
}

.thumbnail:hover {
    cursor: pointer;
    opacity: 0.7;
}

/* End Beranda */
