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

body {
    height: 100vh;
    background: #0b1c2d;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;

}

.container {
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 48px;
    letter-spacing: 4px;
}

.tagline {
    margin-top: 15px;
    font-size: 18px;
    color: #cfd8e3;
}

.note {
    margin-top: 25px;
    font-size: 16px;
}
  
.footer {
    margin-top: 40px;
    font-size: 14px;
    color: #aab4c3;
  }