/* TITLE */

#title {
    font-family: 'Oswald', sans-serif;
    font-size: 45px;
    font-weight: 500;
    animation: floating 10s infinite;
    text-align: center;
    margin-top: 3vh;
    margin-bottom: 13vh;
}

#advice_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 750px;
    margin: 0 auto;
    text-align: justify;
}

#advice_div>hr {
    width: 80%;
    max-width: 300px;
}

#advice_div>h2 {
    text-align: center;
}

#advice_div>p {
    width: 100%;
    max-width: 600px;
    line-height: 1.5em;
}

#advice_div>button {
    width: auto;
    color: white;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    padding: 13px 20px;
    margin: 10px;
    border-radius: 25px;
    background: rgba(0, 153, 51, 0.7);
    border: none;
    outline: none;
}

#advice_div>button>a {
    color: white;
}

#advice_div>button:active {
    background: rgba(0, 153, 51, 0.9);
}