* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Literata', serif;
    height: 100vh;
    overflow: hidden;
    background: #FFFDF4 url('images/bg.jpg') repeat;
    position: relative;
}

.login-link {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #2B2A1E;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.login-link:hover {
    opacity: 1;
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: min(60vw, 450px);
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    color: #2B2A1E;
    opacity: 0.8;
    max-width: 600px;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .logo {
        max-width: 70vw;
        margin-bottom: 1.5rem;
    }
    
    .tagline {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 80vw;
        margin-bottom: 1rem;
    }
}
