html,
body {
    font-family: Montserrat, sans-serif;
}

.all-informations {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2vh;
    border-radius: 2vh;
}

.logo-partageons {
    display: flex;
    justify-content: center;
}

.all-informations {
    width: 80%;
    margin: 2vh auto;
}

h1 {
    display: block;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    /* animation: highlight 2s linear infinite; */
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

h1 {
    animation: bounce 2s linear infinite;
}

.asptt {
    text-align: center;
}

hr {
    width: 100px;
    border: 1px solid gray;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .all-informations {
        width: 45%;
    }

    .content {
        width: 23%;
    }
}