.subscribe-button {
    background-color: rgb(200, 0, 0);
    color: white;
    border: none;
    height: 36px;
    width: 105px;
    border-radius: 2px;
    cursor: pointer;
    margin-right: 8px;
    transition: opacity 0.15s;
    }
    .subscribe-button:hover {
        opacity: 80%;
    }
    .subscribe-button:active {
        opacity: 60%;
    }
    .join-button {
    background-color: white;
    border-color: rgb(41, 118, 211);
    border-style: solid;
    border-width: 1px;
    color: rgb(41, 118, 211);
    height: 36px;
    width: 62px;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color .15s,
        color .15s;
    }
    .join-button:hover {
        color: white;
        background-color: rgb(41, 118, 211);
    }
    .join-button:active {
        opacity: 80%;
    }
    .tweet-button {
    background-color: rgb(2, 158, 255);
    color: white;
    border: none;
    height: 36px;
    width: 74px;
    border-radius: 8px;
    border-radius: 18px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    margin-left: 8px;
    transition: box-shadow .15s;
    }
    .tweet-button:hover {
        box-shadow: 5px 5px 10px rgba(0,0,0,15%);
    }