@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    background-color: black;
}

.centered-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.logo-container {
    text-align: center;
    background: #f5f5f5;
    font-family: 'Lexend', sans-serif;
    font-weight: 900;
    padding: 10px;
    border-radius: 7px;
    letter-spacing: 1px;
    margin-top: 35px;
    margin-bottom: 25px;
}

.logo-container h1 {
    margin: 0;
}

.image-container {
    margin: 0px;
    width: calc(276.2px - 24px);
    height: 336.267px;
    border: 10px solid black;
    outline: 2px solid #f5f5f5;
    border-radius: 7px;
}

.image-container img {
    border-radius: 5px;
    width: calc(276.2px - 24px);
    margin: 0px;
    padding: 0px;
}

.centered-container h2 {
    font-size: 175%;
    color: #f5f5f5;
    font-family: "Playfair Display";
    margin: 0;
}

.anubis-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #f5f5f5;
    color: black; /* Changed from white to black for visibility */
    padding: 12px 16px;
    border-radius: 7px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Lexend', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 0.7px solid rgba(0, 0, 0, 0.1); /* Adjusted border color */
}

.anubis-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #e8e8e8; /* Slightly darker on hover */
}

.anubis-badge:active {
    transform: translateY(0);
}

.anubis-mascot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1); /* Adjusted for light background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.anubis-mascot img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.anubis-text {
    white-space: nowrap;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .anubis-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 14px;
        font-size: 13px;
    }
   
    .anubis-mascot {
        width: 22px;
        height: 22px;
    }
   
    .anubis-mascot img {
        width: 18px;
        height: 18px;
    }
}