body {
    margin: 0;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column; /* stack logo, tagline, button vertically */
}

.logo-container {
    text-align: center;
}

.logo-container img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.tagline {
    margin-top: 20px; /* space below logo */
    color: #ffffff;   /* white text */
    font-size: 1.2em;
    font-family: Arial, sans-serif;
}

.follow-button {
    display: inline-block;
    margin-top: 20px; /* space below tagline */
    padding: 10px 20px;
    background-color: #0073e6; /* LinkedIn-style blue */
    color: #ffffff;            /* white text */
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.follow-button:hover {
    background-color: #005bb5; /* darker blue on hover */
}