html {
    background-color: #1E2337;
    margin: 0;
    padding: 0;
    transition: all 1s;
    height: 100%;
}
body {
    transition: all 0.5s;
    filter: none;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#title {
    font-size: 100px;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-top: 0;
}
#subtitle {
    font-size: 25px;
    text-align: center;
    margin-top: 0px;
    padding-top: 0px;
    color: #6c7ec9;
    margin-bottom: 30px;
}

#searchbar {
    border: none;
    background-color: #333;
    width: 70%;
    height: 50px;
    text-align: center;
    color: white;
    user-select: none;
    outline: none;
    box-shadow: none;
    font-size: large;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

#searchButton {
    border: none;
    background-color: #333;
    color: white;
    height: 50px;
    width: 200px;
    margin-top: 25px;
    padding: 10px;
    border-radius: 15px;
    transition: all 0.25s;
    opacity: 1;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#searchButton:hover {
    transition: all 0.5s;
    background-color: #555;
}

#searchButton:disabled {
    transition: all 0.25s;
    background-color: #121212;
    color: #555;
    opacity: 0;
    transform: scale(0.25);
}

#main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70vh;
}

#center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.footer {
    background-color: #151927;
    padding: 20px 0;
    border-top: 1px solid #333;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: all 0.5s;
    font-size: 16px;
    padding: 5px 10px;
}

.footer-links a:hover {
    transform: scale(1.25, 1.25);
    color: #999;
    transition: all 0.15s;
}

.footer-links .donation {
    color: #553;
    text-decoration: none;
    animation: donation-change 15s infinite linear;
    transition: all 1.5s;
    font-size: 16px;
    padding: 5px 10px;
    font-weight: normal;
}

.footer-links .donation:hover {
    transform: scale(1.5, 1.5) rotate(3deg);
    animation: donation-change 1s infinite linear;
    color: gold;
    text-shadow: 0 0 10px gold;
    transition: all 0.3s;
}

@keyframes donation-change {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

.footer-copyright {
    text-align: center;
    color: #444;
    font-size: 14px;
    margin: 0;
}

.footer-copyright p {
    margin: 0;
}
