/* Reset margins and paddings */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Base body styles */
body {
    background-color: #2B2B2B;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* Main container to hold logo and text */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Logo styles */
.logo {
    width: 350px;
    height: auto;
    margin-bottom: 32px;
}

/* Teaser text styles */
.teaser-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    margin: 0;
    /* To visually center despite letter-spacing on the last character */
    padding-left: 0.3em; 
}

/* Responsive styles for mobile */
@media (max-width: 600px) {
    .logo {
        width: 70vw; /* 70% of viewport width */
    }
    
    .teaser-text {
        font-size: 1rem;
        letter-spacing: 0.25em;
    }
}
