.twitter-timeline, #container {
    margin: auto;
}



.leakers {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    width: 110px;
    height: 50px;
    margin: 10px;
    color: white;
    background-color: rgb(255,255,255,0.2);
    border-radius: 10px;
    border: none;

    transition: background-color .2s;
    transition: color .2s;
}

#container {
    display: flex;
    text-align: center;
    margin-bottom: 10px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.leakers:hover {
    color: black;
    background-color: rgba(255, 255, 255, 0.77);
}

@media screen and (max-width: 768px) { 
    .leakers {
        width: 90px;
        height: 40px;
        font-size: 14px;
    }
    #container {
        width: 300px;
        height: auto;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 30px;
    }

}