.foot-container{
    display: flex;
    flex-direction: row;
    /* background-color: #0b0e11; */
    background-color: whitesmoke;
    width: 100%;
    margin-top: auto;
    border-top: 2px solid gray;
    height: 100px;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

.foot{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 40px;
    align-items: flex-start;
    /* background-color: #0b0e11; */
    background-color: whitesmoke;
    width: auto;
}

.foot-title{
    vertical-align: top;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.foot-logo{
    color: black;
    font-weight: 500;
}

.badges{
    margin-top: 6px;
    margin-bottom: 6px;
}

#livetype{
    cursor: pointer;
}
.all-links{
    display: flex;
    flex-direction: row;
}

.link-cont{
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    height: 180px;
    justify-content: center;
}

.links{
    text-decoration: underline;
    color: black;
    margin-bottom: 4px;
}

@media (max-width: 320px) {
    .foot-container{
        width: 100%;
        margin: 0;
        flex-direction: column;
        height: 20%;
    }
    .foot, .all-links{
        width: auto;
        margin: 0;
        padding: 0;
        height: auto;
    }

    .all-links{
        height: 150px;
    }

    .foot{
        align-items: center;
        justify-content: center;
    }
    .all-links{
        align-items: center;
        justify-content: center;
        display: none;
    }

    .foot-title{
        display: none;
    }
    .badges{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
    }

}

@media (max-width: 505px) {
    .link-cont{
        padding-left: 20px;
    }
  }

  @media (max-width: 445px) {
    .foot{
        padding-left: 20px;
        padding-right: 5px;
    }
  }

  @media (max-width: 445px) {
    .links{
        font-size: 13px;
    }
    .foot-logo{
        font-size: 13px;
    }
    .foot{
        padding-left: 15px;
    }
  }
