* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Comic Sans MS", Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #6ea8ff, #9fd3ff);
    color: #000;
}

.topbar {
    background: #4a6cff;
    padding: 25px;
    text-align: center;
    color: white;
    border-bottom: 5px solid #2f49c7;
}

.topbar h1 {
    font-size: 40px;
    font-weight: bold;
}

.slogan {
    font-size: 18px;
    margin-top: 5px;
    font-weight: bold;
    color: #ffeb3b;
}

.content {
    max-width: 600px;
    margin: 100px auto;
    text-align: center;
}

.content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: #ffeb3b;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #000;
    transition: 0.2s;
}

.button:hover {
    background: #ffe000;
}