@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    /* Tiling background image - replace with your actual image path */
    background-image: url('../img/vb_bg.png');
    background-repeat: repeat;
    background-position: 0 0;
    
    /* Fallback background color */
    background-color: #72ccb2;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    gap: 20px;
}

.logo {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
}

.logo-text {
    color: #ffffff;
    font-size: 14px;
    font-family: "Source Serif 4", serif;
    font-weight:400;
    text-align: center;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .logo-container {
        max-width: 80%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        max-width: 90%;
        padding: 10px;
    }
}