/* Import fonts from /fonts directory */
@font-face {
    font-family: 'Myriad Pro';
    src: url('fonts/MyriadProRegular/MyriadProRegular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

html {
    background-color: #006699;
}

body {
    margin: 0; /* remove default spacing */
    height: 100%; /* full viewport height */
    background: linear-gradient(to bottom, #66CCFF, #006699);
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Myriad Pro', sans-serif !important;
}

.rounded-5 {
    border-radius: 5rem !important;
}

.rounded-3 {
    border-radius: 2rem !important;
}

.rounded-1 {
    border-radius: 1rem !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.text-blue {
    color: #006699 !important;
}

.bg-blue {
    background-color: #006699 !important;
}

.text-orange {
    color: #F96F1A !important;
}

.text-dark-gray {
    color: #333333 !important;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
}

.btn-rim {
    width: 100% !important;
    display: inline-block;
    padding-left: 8px;
    padding-right: 4px;
    padding-top: 8px;
    padding-bottom: 4px;
    background: #66ccff;          /* light blue */
    border-radius: 999px;
    cursor: pointer;
}
.fancy-btn {
    background: #006699;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border: 0;
    border-radius: 999px;
    padding: 14px 30px;
    line-height: 1.1;
    width: 100%;
    min-height: 4.2rem;
    cursor: pointer;
}

.container {
    padding-bottom: 1em;
    padding-top: 1em;
}

.border-blue {
    border: 2px solid #006699 !important;
}

.h1-image-inline {
    height: 1.5em;
    width: 1.5em;
    margin-left: 0.5em;
    margin-bottom: 0.2em;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.star-list {
    list-style: none;        /* remove default bullets */
    padding: 0;
    margin: 0;
}

.star-list li {
    position: relative;
    padding-left: 2rem;      /* space for the star */
    margin: .6rem 0;
}

.star-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: -0.2em;              /* adjust vertical alignment */
    width: 2rem;
    height: 2rem;
    background: url("img/star.png") no-repeat center center;
    background-size: contain;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem !important;
    }

    .fancy-btn {
        padding: 2px !important;
    }
}