body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #060038;
    color: white;
    font-family: 'Mouse Memoirs', sans-serif;
}

.content {
    text-align: center;
}

.logo {
    width: 200px;
    margin-bottom: 40px; /* Increased margin to raise the logo */
}

h1 {
    margin: 0;
    font-size: 36px; /* Increased font size */
}

h2 {
    margin: 10px 0;
    font-size: 28px; /* Increased font size */
    word-break: break-all;
}

button {
    margin-top: 30px; /* Increased margin for better spacing */
    padding: 20px 40px;
    font-size: 24px; /* Increased font size */
    background: url('https://i.ibb.co/tYBnYjH/btn-xl-yellow.png') no-repeat center center;
    background-size: cover;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Mouse Memoirs', sans-serif;
}

button:hover {
    opacity: 0.8;
}
