* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #0b2f2a, #021816);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* LOGO CONTAINER */
.logo-container {
    text-align: center;
}

/* MONOGRAM */
.monogram {
    width: 120px;
    height: 120px;
    border: 3px solid #c9a063;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a063;
    font-size: 42px;
    font-weight: 700;
    margin: 0 auto 20px auto;
    letter-spacing: 2px;
}

/* BRAND NAME */
.brand-name {
    color: #c9a063;
    font-size: 48px;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

/* TAGLINE */
.tagline {
    color: #9f8c5a;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
