body {
    font-family: 'Open Sans', sans-serif;
    background: url("../img/mj2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color:#f9f3db;
}
a {
    color: #c7aa5c;
    text-decoration:none;
}
a:hover {
    color: #e1c068;
    text-decoration:underline;
}
.navbar-custom {
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(34,34,34,1) 100%);
    border-bottom:2px solid #e1c068;
    font-weight:400;
    z-index:10;
}
.navbar-custom .nav-link, .navbar-custom .navbar-brand {
    color: #c7aa5c; /* Gold color for links */
}
.navbar-custom .nav-link:hover, navbar-custom .navbar-brand:hover {
    color: #e1c068; /* Gold color for links */
}
.navbar-custom .navbar-brand span {
    font-weight:700;
    color: #e1c068; /* Gold color for links */
}

.navbar-brand {
    text-transform:uppercase;
}
.navbar-brand:hover {
    color: #e1c068;
    text-decoration:none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 215, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.fullscreen-cover {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/bg-tile.png"), linear-gradient(45deg, rgba(69, 86, 92, 0.8), rgba(65, 81, 87, 0.8));
    background-repeat: repeat;
    animation: moveBackground 60s linear infinite; /* Apply the animation */
}
.fullscreen-cover * {
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
}

.content-card {
    position: relative; /* Ensure the pseudo-element is positioned relative to this container */
    padding: 40px;
    border-radius: 10px;
}

.content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 50px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border:2px dashed #e1c068;
    z-index: -1; /* Place the pseudo-element below the content */
}

.logout-button {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    transform: scale(0.8);
}

/* Define the animation */
@keyframes moveBackground {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100% 0;
    }
}

/* Define the pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.05);
    }
    10% {
        transform: scale(1);
    }
}

.obtuse-text, .alliteration-text {
    transition: opacity 2s; /* 2s is the duration of the fade effect */
}
.emoji-display {
    font-size: 10vw; /* Size relative to the viewport width */
}
