.container {
  margin-top: 20px;
}

#contact-info {
    font-size: 18px;
    background-color: #00355d52;
    padding: 20px;
    text-align: start;
    font-family: 'fbtrampolina-blackwebfont';
    color: white;
}

#contact-info a {
    color: rgb(255, 255, 255);
}

.btn-red {
    background-color: #ce181e;
    padding: 10px;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: space-between; /* Adjusts content to space-between to push items to edges */
    align-items: center;
    width: 100%; /* Ensures the link occupies the full width of the column */
    margin: 10px;
    text-align: center;
    /* text vertical alignment */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}



.btn-red svg {
    margin-left: auto; /* Pushes the SVG to the right */
    fill: white;        /* Icon color is white */
}

.btn-red:hover {
    background-color: #00355d;
    color: #ce181e;
}

.btn-red:hover svg {
    fill: #ce181e;
}

svg {
    height: 100%;
    width: 100%;
}

