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

body{
    background:#f4f6f9;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.container{
    width:400px;
    background:white;
    padding:40px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

h1{
    color:#7B1E3A;
    margin-bottom:10px;
}

.tagline{
    color:#666;
    margin-bottom:20px;
}

p{
    color:#444;
    line-height:1.6;
}

.button{
    display:inline-block;
    margin-top:30px;
    padding:12px 24px;
    background:#7B1E3A;
    color:white;
    text-decoration:none;
    border-radius:6px;
}

.button:hover{
    background:#5d162c;
}
