.text-xl {
    font-size: 52px;
}

.text-lg {
    font-size: 35px;
}

.text-md {
    font-size: 18px;
}

.text-sm-md {
    font-size: 16px;
}

.text-sm {
    font-size: 16px;
}

.text-xs {
    font-size: 15px;
}

.card-col {
    min-width: 250px;
    max-width: 250px;
    min-height: 420px;
}

.background-tile {
    border-radius: 60px;
    padding: 40px;
}

.drop-shadow {
    filter: drop-shadow(0px 7px 9px #7d7d7d);
}

.drop-shadow-alt {
    filter: drop-shadow(0px 7px 9px #111111)
}

.header-width {
    max-width: 1400px;
    width: 100%;
}


/* For small screens */

@media (min-width: 601px) and (max-width: 900px) {
    .text-xl {
        font-size: 40px;
    }
    .text-lg {
        font-size: 30px;
    }
    .text-md {
        font-size: 18px;
    }
    .text-sm-md {
        font-size: 16px;
    }
    .text-sm {
        font-size: 16px;
    }
    .text-xs {
        font-size: 14px;
    }
    .card-col {
        min-width: 250px;
        max-width: 250px;
        min-height: 300px;
    }
    .background-tile {
        border-radius: 40px;
        padding: 20px;
    }
}


/* For extra-small screens and below */

@media (max-width: 600px) {
    .text-xl {
        font-size: 30px;
    }
    .text-lg {
        font-size: 22px;
    }
    .text-md {
        font-size: 18px;
    }
    .text-sm-md {
        font-size: 16px;
    }
    .text-sm {
        font-size: 16px;
    }
    .text-xs {
        font-size: 12px;
    }
    .card-col {
        min-width: 250px;
        max-width: 250px;
        min-height: 250px;
    }
    .background-tile {
        border-radius: 20px;
        padding: 10px;
    }
}


/*Disables selection of text*/

.NoSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/*Disables selection of text*/

p {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/*Disables selection of hrefs*/

a {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/*Disables selection of images*/

img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}