* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

..main-container {
    background-image: url('images/MBcomingsoon.png'); 
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 120px;
}

h1 {
    color: white;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-shadow: 0px 4px 20px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

@media (max-width: 600px) {
    .main-container {
        padding-bottom: 150px;
    }
}