/* main.css */

@font-face {
    font-family: "Terminus";
    src: url("../fonts/terminus-14-medium.otf") format("opentype");
    font-style: normal;
}

@font-face {
    font-family: "Terminus";
    src: url("../fonts/terminus-14-medium.otf") format("opentype");
    font-style: bold;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

body,
html {
    background-color: #000000;
    font-family: Terminus;
    color: #94febf;
}

.title-image {
    animation: rotation 2s infinite linear;
    animation-delay: 4.5s;
    display: block;
    width: 150px;
}

.tornado-button {
    border: 2px solid #94febf;
    background: #000000;
    padding: 0.75em 2.5em;
    border-radius: 15px;
    font-size: 0.875em;
    color: #94febf;
}

.tornado-button:hover {
    background: #94febf;
    color: #000000;
}

.modal-content {
    background-color: #000000;
    overflow-wrap: break-word;
    border-color: #94febf;
}

.modal-title {
    margin-left: 50%;
    transform: translateX(-50%);
}

.modal-header,
.modal-footer {
    border-color: rgba(0, 0, 0, 0.5);
}

.btn-close-white svg {
    background: #94febf;
}

.navbar {
    display: grid;
    justify-content: end;
}

.navbar ul {
    flex-direction: row;
    padding: 25px;
}

.navbar ul li {
    margin-left: auto;
    margin-right: 25px !important;
}

.nav-logo {
    width: 30px;
}

.title {
    text-align: center;
}

a {
    color: white !important;
}

.accordion-item {
    background-color: #000000;
}

.accordion-button,
.accordion-button:not(.collapsed) {
    color: #94febf;
    background: #000000;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

h2 {
    color: #94febf;
    text-align: center;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #94febf;
}

p {
    color: #94febf;
    line-height: 1.6;
}

a {
    color: #94febf;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar ul li:last-of-type {
    margin-right: 25px !important;
}

.navbar ul li:last-of-type a {
    color: #94febf !important;
}

.navbar ul li:last-of-type .dropdown-menu {
    background-color: #000000;
    padding: 10px 0;
    border: 2px solid #94febf;
    width: 100px; 
}


.navbar ul li:last-of-type .dropdown-menu a:hover {
    background-color: #94febf;
    color: #000000 !important;
}

.navbar ul li:last-of-type .dropdown-menu a {
    color: #94febf !important;
    padding: 10px 20px;
    width: 100px;
    display: block;
    text-align: center;
}

.navbar ul li:last-of-type .dropdown-menu li {
    width: 100px; 
    text-align: center;
}

.navbar ul li:last-of-type .dropdown-menu .dropdown-item {
    width: 100%;
    text-align: center;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    justify-content: center;
  }
  