@font-face {
    font-family: "CenturyGothic";
    src: local("CenturyGothic"),
    url("/fonts/woff2/centurygothic.woff2") format("woff2"),
    url("/fonts/woff/centurygothic.woff") format("woff"),
    url("/fonts/ttf/centurygothic.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "CenturyGothicBold";
    src: local("CenturyGothicBold"),
    url("/fonts/woff2/centurygothic_bold.woff2") format("woff2"),
    url("/fonts/woff/centurygothic_bold.woff") format("woff"),
    url("/fonts/ttf/centurygothic_bold.ttf") format("truetype");
    font-style: normal;
    font-weight: bold;
}

html {
    height: 100%;
}

body {
    font-family: CenturyGothic, Arial, sans-serif;
    background-color: black;
    color: white;
    min-width: 320px;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

select {
    color: white;
    font-size: 1.2vw;
    background-color: rgba(0, 0, 0, 0.85);
    border: 2px solid white;
    border-radius: 7px;
}

select:hover {
    opacity: 0.7;
}

.carousel {
    border-radius: 15px;
    overflow: hidden;
}

.accordion {
    background-color: rgba(0, 0, 0, 0.85);
    
}

.accordion-item {
    background-color: #fff0;
    --bs-accordion-btn-bg: #fff0;
    --bs-accordion-btn-color: #ffffff;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgb(255 255 255 / 0%);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23999' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.accordion-body {
    color: white;
}

.accordion-body p {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin: 0;
}

input[type="checkbox"] {
    margin-right: 5px;
}

.modal {
    --bs-modal-width: 80%;
    --bs-modal-bg: #fff0;
}

.modal-content {
    border: none;
}

.modal-body {
    padding: 0;
}

.news-img {
    flex: 0 0 auto;
    width: 95%;
}