@media screen and (max-width: 650px) {
    .page {
        width: 90%;
        min-width: 300px;
    }
    .card-top {
        height: 150px;
    }
    .button-label {
        font-size: 18px;
    }
}
@media screen and (min-width: 651px) {
    .page {
        width: 600px;
        margin-top: 100px;
    }
    .card-top {
        height: 200px;
    }
    .button-label {
        font-size: 28px;
    }
}

.card {
    width: 100%;
    padding: 0;
}

.card-top, .card-bio, .card-menu, .card-bottom {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.card-top {
    background-color: rgba(0,30,80,0.95);
    background-image: url('/img/index-top-graphic.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    max-height: 200px;
}

.card-bio {
    background-color: rgba(0,30,80,0.95);

}

.bio {
    text-align: center;
    padding: 0 15px 15px 15px;
}

.bio-line {
    padding: 5px;
    color: #d9d9d9;
    font-size: 0.9rem;
}

.card-menu {
    background: linear-gradient(0deg, rgba(0,30,80,0.7) 0%, rgba(0,30,80,0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 90%;
    min-width: 250px;
}

.card-bottom {
    background-color: rgba(0,30,80,0.7);
}

.card-bottom {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.card-item:last-child {
    margin-bottom: 0;
}

.button {
    text-decoration: none;
}

.button-content {
    position: relative;
    width: 100%;
    height: 100px;
    background-color: #4f97ec;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    border: solid 2px #4f97ec;
    border-radius: 5px;
}

.button-content:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.button-label {
    position: absolute;
    bottom: 6px;
    right: 12px;
    /*font-size: RESPONSIVE*/
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.social-links {
    padding: 15px;
    text-align: right;
}

.social-link {
    margin-right: 10px;
}