body {
    background-color: #36393e;
    background-image: url('/img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#copyToast {
    position: fixed;
    top: 0;
    right: 0;
    margin: 10px;
    background: transparent;
}

@media (max-width: 768px) {
    .logo, .maintitle, .ip-address {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .maintitle {
        margin-top: 10px;
    }
}

@keyframes rotate {
    from {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    to {
        transform: scale(1);
    }
}

.logo {
    height: 50px; /* Adjust as per your logo's aspect ratio */
    vertical-align: middle; /* Align the logo vertically */
    animation: rotate 5s linear infinite;
}

.maintitle {
    display: inline-block; /* Align title inline with the logo */
    vertical-align: middle; /* Align the title vertically */
    font-size: 1.5em; /* Adjust to match the size of the logo */
    margin-left: 10px; /* Optional: Adjust spacing between logo and title */
}

.maintitle h1 {
    font-size: 1.5em;
}

.sponsor {
    width: 10em;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

.close {
    color: #fff;
    text-shadow: none;
}

.close:hover {
    color: #aaa;
}

.modal-content {
    border-radius: 10px;
}

.modal-body {
    background-color: #282b30;
}

.modal-header {
    background-color: #424549;
    border-bottom: 1px #1e2124 solid;
}

.modal-body .map-option {
    display: block;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px #1e2124 solid;
    padding: 15px;
    background-color: #424549;
    transition: background-color 0.3s;
}

.modal-body .map-option:hover {
    background-color: #36393e;
}

.modal-body .map-option h6 {
    font-size: 1.25em;
    margin-bottom: 5px;
}

.modal-body .map-option p {
    font-size: 0.9em;
}

.modal-body .map-option:last-child {
    border-bottom: none;
}

.donation-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donation-buttons stripe-buy-button {
    margin-bottom: 10px;
}

.redtext {
    color: red;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

#ipAddress {
    text-decoration: underline;
    cursor: pointer;
}