/* *********************************
   Intro page
********************************* */

/* Center content */
.home-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--main-bg-color);
}

.intro-logo {
    width: 100%;
    max-width: 350px;
    margin-bottom: 50px;
}

.get-started-btn {
    padding: 10px 20px;
    font-size: 1.2em;
    color: var(--button-text-color);
    background-color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.get-started-btn:hover {
    opacity: 0.8 !important;
}