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

body {
    font-family: 'EB Garamond', 'Adobe Garamond Pro', 'Garamond', 'Times New Roman', serif;
    overflow-x: hidden;
    
}

.container {
    width: 100vw;
    height: 100vh;
}

.landing-page {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: #21012E;
}

.main-title {
    position: absolute;
    left: 40%;
    top: 40%;
    transform: translate(-50%, -50%);
    color: #D29D00;
    font-size: 100px;
    font-weight: 1000;
    font-style: italic;
    line-height: 1.2;
    letter-spacing: -7px;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

.brand-logo {
    position: absolute;
    left: 50%;
    bottom: 3%;
    transform: translateX(-50%);
    height: 28px;
    width: auto;
    filter: brightness(1);
}

.copyright {
    position: absolute;
    font-family: 'Inter', Consolas, 'Courier New', monospace;
    left: 3px;
    bottom: 0px;
    color: rgba(255, 255, 255, 0.26);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.875;
    letter-spacing: -1px;
    text-align: left;
    margin: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .main-title {
        font-size: clamp(40px, 8vw, 100px);
        letter-spacing: clamp(-5px, -1vw, -7px);
    }
    
    .brand-logo {
        height: clamp(40px, 8vw, 80px);
    }
    
    .copyright {
        font-size: clamp(12px, 2vw, 16px);
    }
}
