.link-container {
    background-color: #6ca4c9;
    height: 150px;
    border-radius: 2em;
    width: 150px;
    display: flex;
    flex-direction: column;
    padding: 1em;
    align-items: top;
    text-align: center;
}

.lightgrey .link-container {
    float: right;
}

.white .link-container {
    float: left;
}

.link-blank {
    background-color: #FFFFFF;
    border-radius: 2em;
    height: 100%;
    width: calc(150px-2em);
    padding-top: 1em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.link-bubble {
    position: relative;
    background-color: #658193;
    height: 1.5em;
    width: calc(100%-1.5em);
    border-radius: 1em;
    font-size: x-small;
    color: white;
    padding-left: 0.75em;
    padding-top: 0.4em;
    padding-right: 0.75em;
    text-align: left;
    text-overflow: clip;
    white-space: nowrap; 
    line-height: 100%;
    overflow: hidden;
    margin-bottom: 0.5em;
}

.link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (min-width: 1000px) {
    .lightgrey .side-text {
        padding-right: 200px;
        padding-left: 330px;
    }

    .white .side-text {
        padding-right: 330px;
        padding-left: 200px;
    }
}

@media screen and (max-width: 1000px) {

    .link-container {
        display: none;
    }

    .link-bubble {
        display: none;
    }

    .link-blank {
        display: none;
    }

    .link {
        display: none;
    }
}