/* #endregion Hero Cover */

.hero-cover {
    flex: 1;
    background-color: var(--main-background);
    color: white;

    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 12em;
}

#hero-title {
    text-align: center;
    font-size: 7em;
    margin-bottom: 30px;
}

.hero-message {
    display: block;
    width: 100%;

    text-align: center;
    font-size: 1.4em;
}

#type-command {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

#typed-input {
    font-size: 1.4em;
    font-weight: 500;
    color: grey;
}


.hero-btn-grp {
    display: flex;

    width: 100%;
    margin-top: 5px;
    justify-content: center;
}

.button {
    font-size: 1.4em;
    
    padding: 4px 20px 8px 20px;
    border-radius: 8px;

    border: none;

    margin-inline: 10px;

    cursor: pointer;
}

#signupBtn {
    background-color: var(--orange);
    color: white;
}

#signupBtn:hover {
    background-color: var(--green-1);
}

#loginBtn {
    background-color: var(--green);
    color: white;
}

#loginBtn:hover {
    background-color: var(--green-1);
}
/* #region */


.latest-news {
    display: flex;
    justify-content: center;

    text-align: center;
    margin-top: 30px;
}

#latest-news-text {
    border: 1px solid white;
    border-radius: 4px;
    background-color: var(--main-background-2);
    padding: 8px 20px;

    text-decoration: none;
}