
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    font-family: 'Press Start 2P', bold;
    text-align: center;
    color: white;
    background-image: url('Art/background_large.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.bios-background {
    background-image: url('Art/Background_2.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Press Start 2P', 'bold';
    color: #eee98a;
    background-color: #9F3C91;

    /* I hated doing this. I hate color modulation. But i figured it out. I always do. Why did we have this. Anyway, it works. */

    animation: image-tint 10s infinite alternate;

    /* :( */
}

@keyframes image-tint {
    0% {
        filter: brightness(1) hue-rotate(0deg);
    }
    50% {
        filter: brightness(1.2) hue-rotate(45deg);
    }
    100% {
        filter: brightness(1) hue-rotate(0deg);
    }
}

.battle-background {
    background-image: url('Art/Background_2.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.begin-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

button {
    font-family: 'Press Start 2P';
}
.begin-button {
    font-family: 'Press Start 2P';
    padding: 15px 30px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    background-color: #3FA0A4;
    color: white;
}

.begin-button:hover {
    font-family: 'Press Start 2P';
    color: #eee98a;
    background-color: #9F3C91;
}

.character-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    height: 80vh;
}

.aspect-display {
    display: flex;
    flex: 1;
    text-align: left;
    padding-left: 50px;
    font-size: 24px;
}

.moon-button {
    background: none;
    border: none;
    cursor: pointer;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.moon-button img {
    width: auto;
    height: auto;
}

.restart-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 15px 30px;
    font-size: 14px;
    border-radius: 8px;
    background-color:#3FA0A4 ;
    color: white;
}

.restart-button:hover {
    background-color: #9F3C91;
}

.nextPage1 {
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px 30px;
    font-size: 14px;
    border-radius: 8px;
    background-color:#3FA0A4 ;
    color: white;
}

.boss-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.battle-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 900px;
    margin: 2rem auto;
}

.player-section, .boss-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player-section img,
.boss-section img {
    width: auto;
    height: 400px;
    /*border: 3px solid #444;
    border-radius: 10px;
    background: #f0f0f0;*/
}

.battle-result {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.nextPage2 {
    background-color: #4CAF50;
    color: white;
}

.restart-button {
    background-color: #9F3C91;
    color: white;
}

html, body {
    height: 100%;
}

.bios-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 2px 3px;
    font-size: 14px;
    border-radius: 8px;
    background-color:#9F3C91 ;
    color: white; position: absolute;
}
