@import url(https://fonts.bunny.net/css?family=lusitana:700);

body, html {
    height: 100%;
}

body {
    font-family: 'Lusitana', serif;
    color:#cdf4ff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: url('../img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100%;
}

.logo-container {
    position: fixed;
    right: 3vw;
    bottom: 5vh;
    text-align: right;
    width: auto;
}

h1.logo {
    font-size: 6rem;
    margin: 0;
    white-space: nowrap;
    overflow-x: auto;
}

.tagline {
    font-size: 1.5rem;
    color: #e0f7ff;
    margin-top: -2.7rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px #0008;
}

/* Responsive: logo and tagline bottom center on mobile */
@media (max-width: 600px) {
    .logo-container {
        left: 0;
        right: 0;
        bottom: 5vh;
        text-align: center;
        width: 100%;
    }
    h1.logo {
        font-size: 10vw;
    }
    .tagline {
        font-size: 1rem;
        display: none; /* Hide tagline on small screens */
    }
}