body {
    font-family: sans-serif;
    font-stretch: condensed;
    background-image: url("./blankmusic.jpg");
    background-size: cover;
    overflow: hidden;
    width: 100%;
    background-blend-mode: normal;
}

#viewport {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

label {
    font-weight: normal;
    font-size: 1.5vh;
    font-family: sans-serif;
}

p {
    margin: 0;
    font-size: calc(6px + 1vh);
}

li {
    font-size: calc(6px + 1vh);
}

fieldset {
    border: 1px solid maroon;
}

h1 {
    font-weight: bold;
    font-size: calc(10px + 3vh);
    font-family: sans-serif;
    margin: auto;
}

h2 {
    font-weight: bold;
    font-size: calc(5px + 2vh);
    font-family: sans-serif;
    margin: auto;
}

h3 {
    font-weight: bold;
    font-size: calc(4px + 1.75vh);
    font-family: sans-serif;
    margin: auto;
}

h4 {
    font-weight: bold;
    font-size: calc(2px + 1.75vh);
    font-family: sans-serif;
    margin: auto;
}

h5 {
    font-weight: bold;
    font-size: calc(1px + 1.5vh);
    font-family: sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    user-select: none;
}

button {
    background-color: maroon;
    color: navajowhite;
    border: 0.5vh solid navajowhite;
    height: 6vh;
    width: 8vw;
    padding: 0.5vh;
    margin: 3px;
    cursor: pointer;
    border-radius: 25px;
}

button:hover {
    background-color: darkred;
    color: navajowhite;
    border: 0.75vh solid navajowhite;
    height: 6vh;
    width: 8vw;
}

button:disabled {
    background-color: slategray;
    color: lightgray;
    border: 0.5vh solid navajowhite;
    height: 6vh;
    width: 8vw;
}

button:disabled:hover {
    cursor: not-allowed;
}

.tooltipDescription {
    background-color: yellow;
    color: black;
    border: 1px solid black;
    cursor: pointer;
    margin: auto;
    padding: 5px;
}

.tooltipDescription:hover {
    background-color: goldenrod;
    color: black;
}

.tooltipDescription:disabled {
    background-color: slategray;
    color: lightgray;
    border: 1px solid navajowhite;
}

.tooltipDescription:disabled:hover {
    cursor: not-allowed;
}

hr {
    border: 0.5vh solid maroon;
    margin-top: 0px;
    margin-bottom: 0px;
}

#title_card_button {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid black;
    font-weight: normal;
    font-size: 28px;
    font-family: sans-serif;
    display: block;
    height: 300px;
    width: 300px;
    border-radius: 50%;
    color: black;
    background-color: white;
}

#title_card_button:hover {
    border: 8px solid black;
}

.checkboxContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.5vh;
    user-select: none;
    text-align: left;
    margin: 0 auto;
}

.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkboxCheckmark {
    position: absolute;
    top: 50%;
    left: 0;
    margin: 0 auto;
    height: 25px;
    width: 25px;
    background-color: navajowhite;
    font-size: 2vh;
    transform: translate(0, -50%);
}

.checkboxContainer:hover input~.checkboxCheckmark {
    background-color: pink;
}

.checkboxContainer input:checked~.checkboxCheckmark {
    background-color: maroon;
}

.checkboxCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkboxContainer input:checked~.checkboxCheckmark:after {
    display: block;
}

.checkboxContainer .checkboxCheckmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid navajowhite;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.radioContainer {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 1.5vh;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: left;
    margin: auto;
    height: auto;
}

.radioContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radioCheckmark {
    position: absolute;
    top: 50%;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: navajowhite;
    border-radius: 50%;
    transform: translate(0, -50%);
}

.radioContainer:hover input~.radioCheckmark {
    background-color: maroon;
}

.radioContainer input:checked~.radioCheckmark:after {
    display: block;
}

#menu {
    display: none;
    text-align: center;
    margin: 0 auto;
    border: 5px solid maroon;
    padding: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url("./Notatio bg large.png");
    background-repeat: no-repeat;
    background-attachment: absolute;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.3);
    background-size: contain 50%;
}

#instructions {
    text-align: left;
    margin: 0 auto;
    width: 60vw;
    min-width: 50vw;
    overflow-y: auto;
    max-height: 90vh;
}

#composerPick {
    display: none;
    text-align: center;
    border: 5px solid maroon;
    height: 85vh;
    width: 80vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-image: url("./Notatio bg large.png");
    background-repeat: no-repeat;
    background-attachment: absolute;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.3);
    background-size: contain 50%;
}

#composerPickDiv {
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    width: 95%;
    height: 95%;
}

#composerDiv {
    text-align: center;
    margin: auto;
    height: 75%;
    width: 90%;
    justify-content: space-between;
}

.composerImage {
    margin: 0 auto;
    padding: 1vh;
    border-radius: 50%;
    text-align: center;
    aspect-ratio: 1;
    min-width: 5vw;
    min-height: 5vw;
    max-width: 12vh;
    max-height: 12vh;
    width: auto;
    height: auto;
}

.composerImageMini {
    margin: 0 auto;
    padding: 2vh;
    border-radius: 50%;
    text-align: center;
    aspect-ratio: 1;
    min-width: 5vw;
    min-height: 5vw;
    max-width: 10vh;
    max-height: 10vh;
    width: auto;
    height: auto;
}

#composersList {
    text-align: left;
    overflow-y: auto;
    height: 85%;
    width: 30%;
    margin: 2px 5px;
}

#composerBio {
    text-align: left;
    width: 35%;
    height: 90%;
    overflow-y: auto;
    font: 1.5vh sans-serif;
    margin: 2px 5px;
}

.composersListItem {
    top: 50%;
}

#melodyList {
    text-align: left;
    width: 35%;
    max-width: 38%;
    height: 90%;
    overflow-y: auto;
    margin: 2px 5px;
}

.melodyCanvasItem {
    aspect-ratio: 1;
    min-width: 8vw;
    min-height: 8vw;
    max-width: 10vh;
    max-height: 10vh;
    user-select: none;
}

#game {
    display: none;
    height: 95%;
    width: 95%;
    text-align: center;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
    user-select: none;
}

#gameDiv {
    display: none;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 5px;
}

#battlefield {
    width: 55vw;
    height: 100%;
    margin: 0 auto;
    z-index: 0;
    margin: 1px;
}

#sidebar {
    width: 40vw;
    height: 100%;
    justify-content: space-evenly;
    margin: 0 auto;
}

#gameOver {
    height: 75%;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    align-items: center;
    border: 5px solid maroon;
    background-color: navajowhite;
    color: black;
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
}

#gameOverMessage {
    text-align: center;
    margin: 0 auto;
    align-items: center;
    color: black;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
}

#results {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 80vw;
}

#results_0 {
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 20vw;
}

#results_1 {
    margin: 0 auto;
    justify-content: space-around;
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 20vw;
}

#player {
    margin: auto;
    text-align: center;
    height: 50%;
    align-items: space-between;
    z-index: 1;
}

#opponent {
    margin: auto;
    text-align: center;
    height: 50%;
    align-items: space-between;
    z-index: 1;
}

#opponentHand {
    margin: 0 auto;
    height: 20vh;
    width: 95%;
    align-items: center;
    border: 1vh solid rgba(255, 255, 227, 0.05);
    padding: 2px;
    max-width: 95vw;
    overflow: hidden;
    background-color: transparent;
    z-index: 2;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

#opponentField {
    margin: 0 auto;
    justify-content: center;
    height: 20vh;
    width: calc(8vw * 5);
    align-items: center;
    padding: 2px;
    z-index: 2;
}

#playerField {
    margin: 0 auto;
    justify-content: center;
    height: 20vh;
    width: calc(8vw * 5);
    align-items: center;
    padding: 2px;
    z-index: 2;
}

#playerHand {
    margin: 0 auto;
    height: 20vh;
    width: 95%;
    align-items: center;
    border: 1vh solid rgba(255, 255, 227, 0.05);
    padding: 2px;
    max-width: 95vw;
    overflow: hidden;
    background-color: transparent;
    z-index: 2;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

.cardRegular {
    width: 6vw;
    min-width: 6vw;
    height: 16vh;
    border-radius: 5px;
    margin: 0 auto;
    cursor: pointer;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 4;
    transition: transform 0.5s ease;
}

.cardSpecial {
    width: 6vw;
    min-width: 6vw;
    height: 16vh;
    border-radius: 5px;
    margin: 0 auto;
    cursor: pointer;
    border: 1px solid black;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 4;
    transition: transform 0.5s ease;
}

.playerCard.cardRegular.statusHand:hover {
    transform: scale(1.1);
}

.playerCard.cardSpecial.statusHand:hover {
    transform: scale(1.1);
}

.playerCard.cardRegular.statusField:hover {
    transform: scale(1.1);
}

.playerCard.cardSpecial.statusField:hover {
    transform: scale(1.1);
}

.cardRegular:disabled {
    cursor: not-allowed
}

.cardSpecial:disabled {
    cursor: not-allowed
}

.slotRegular {
    width: 8vw;
    height: 18vh;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    border: 1vh solid rgba(255, 255, 227, 0.05);
    z-index: 3;
}

.slotSpecial {
    width: 8vw;
    height: 18vh;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    border: 1vh solid rgba(255, 255, 227, 0.05);
    z-index: 3;
}

.slotRegular>.cardRegular {
    width: 6vw;
    min-width: 6vw;
    height: 16vh;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 4;
}

.slotSpecial>.cardSpecial {
    width: 6vw;
    min-width: 6vw;
    height: 16vh;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    z-index: 4;
}

.dataRegular {
    height: 16vh;
    text-align: center;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.dataRegular>h4 {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6), transparent);
    padding: 2px 3px;
}

.dataSpecial {
    height: 16vh;
    text-align: center;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.dataSpecial>h4 {
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.6), transparent);
    padding: 2px 3px;
}

#playerStats {
    border: 3px solid maroon;
    height: 40vh;
    margin: 0.5vh;
    background-image: url("./Notatio background.png");
    background-repeat: no-repeat;
    background-attachment: absolute;
    background-position: center;
    background-color: rgba(255, 255, 255, 0.3);
}

#opponentStats {
    border: 3px solid maroon;
    height: 40vh;
    margin: 0.5vh;
    background-image: url("./Notatio background.png");
    background-repeat: no-repeat;
    background-attachment: absolute;
    background-position: center;
    background-color: rgba(225, 255, 255, 0.3);
}

.playerMelody {
    width: 45%;
    height: 100%;
    max-width: 300px;
    justify-content: space-evenly;
}

.opponentMelody {
    width: 45%;
    height: 100%;
    max-width: 300px;
    justify-content: space-evenly;
}

#playerStatsSection {
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

#opponentStatsSection {
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

#playerStatsTop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

#opponentStatsTop {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

#playerStatsTopDetails {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 30vw;
}

#opponentStatsTopDetails {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 30vw;
}

#playerStatsBarName {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    top: 50%;
    translate: (0, -50%);
    height: 13%;
}

#opponentStatsBarName {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    top: 50%;
    translate: (0, -50%);
    height: 13%;
}

#playerHealth {
    margin: 0 auto;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    top: 50%;
    translate: (0, -50%);
    height: 13%;
    width: 80%;
}

#opponentHealth {
    margin: 0 auto;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    top: 50%;
    translate: (0, -50%);
    height: 13%;
    width: 80%;
}

#playerHealthFraction {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 35%;
}

#opponentHealthFraction {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 35%;
}

#playerHealthBar {
    width: 18vw;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2vh;
}

#opponentHealthBar {
    width: 18vw;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2vh;
}

#playerHealthBarDiv {
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#opponentHealthBarDiv {
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#playerStatsSectionMobile {
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

#opponentStatsSectionMobile {
    height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

#playerStatsBarMobile {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-between;
    height: 12%;
    width: 100%;
}

#opponentStatsBarMobile {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-between;
    height: 12%;
    width: 100%;
}

#playerStatsBarNameMobile {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 35%;
    padding: 1px;
}

#opponentStatsBarNameMobile {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 35%;
    padding: 1px;
}

#playerStatsBarLineMobile {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 100%;
    padding: 1% 1.5%;
}

#opponentStatsBarLineMobile {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 100%;
    padding: 1% 1.5%;
}

#playerHealthMobile {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 60%;
}

#opponentHealthMobile {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 60%;
}

#playerHealthFractionMobile {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 35%;
}

#opponentHealthFractionMobile {
    margin: 0 auto;
    align-items: center;
    display: flex;
    text-align: center;
    width: 35%;
}

#playerHealthBarDivMobile {
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    top: 50%;
    translate: (0, -50%);
}

#opponentHealthBarDivMobile {
    margin: 0 auto;
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    top: 50%;
    translate: (0, -50%);
}

#playerHealthBarMobile {
    min-width: 30%;
    max-width: 8vw;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2vh;
}

#opponentHealthBarMobile {
    min-width: 30%;
    max-width: 8vw;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 2vh;
}

#playerMelodyProfileTable {
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

#opponentMelodyProfileTable {
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

td,
tr {
    border: 1vh solid transparent;
    margin: 0.5vh;
    padding: 0.25vh;
}

#playerMelodyNameDiv {
    margin: 0 auto;
}

#opponentMelodyNameDiv {
    margin: 0 auto;
}

.playerMelodyNameItem {
    text-align: center;
    border-radius: 50%;

    cursor: pointer;
}

.opponentMelodyNameItem {
    text-align: center;
    border-radius: 50%;
}

.playerMelodyName:disabled {
    cursor: not-allowed;
}

.opponentMelodyName:disabled {
    cursor: not-allowed;
}

.playerMelodyCanvas {
    width: 300px;
    height: 80%;
    margin: 0 auto;
    cursor: pointer;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

.opponentMelodyCanvas {
    width: 300px;
    height: 80%;
    margin: 0 auto;
    cursor: pointer;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

.playerMelodyCanvas:disabled {
    cursor: not-allowed;
}

.opponentMelodyCanvas:disabled {
    cursor: not-allowed;
}

.playerMelodyCanvasItemDiv {
    margin: 0 auto;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

.playerMelodyCanvasItem {
    user-select: none;
    aspect-ratio: 1;
    min-width: 8vw;
    min-height: 8vw;
    max-width: 10vh;
    max-height: 10vh;
    margin: 0 auto;
    text-align: center;
    border: 1vh solid rgba(255, 255, 227, 0.05);
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

.opponentMelodyCanvasItemDiv {
    margin: 0 auto;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

.opponentMelodyCanvasItem {
    user-select: none;
    aspect-ratio: 1;
    min-width: 8vw;
    min-height: 8vw;
    max-width: 10vh;
    max-height: 10vh;
    margin: 0 auto;
    text-align: center;
    border: 1vh solid rgba(255, 255, 227, 0.05);
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

#playerProfileBox {
    height: 70%;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0 auto;
    padding: 1vh;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

#opponentProfileBox {
    height: 70%;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0 auto;
    padding: 1vh;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    translate: (-50%, -50%);
}

#playerMelody {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#opponentMelody {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#window {
    position: relative;
    top: 50vh;
}

.shake {
    animation: shake 0.5s linear;
}

@keyframes shake {
    0% {
        transform: translate(0%, 0%);
    }

    10% {
        transform: translate(calc(0% - 5px), calc(0% - 5px));
    }

    20% {
        transform: translate(calc(0% + 5px), calc(0% - 5px));
    }

    30% {
        transform: translate(calc(0% - 5px), calc(0% + 5px));
    }

    40% {
        transform: translate(calc(0% + 5px), calc(0% + 5px));
    }

    50% {
        transform: translate(calc(0% - 5px), calc(0% - 5px));
    }

    60% {
        transform: translate(calc(0% + 5px), calc(0% - 5px));
    }

    70% {
        transform: translate(calc(0% - 5px), calc(0% + 5px));
    }

    80% {
        transform: translate(calc(0% + 5px), calc(0% + 5px));
    }

    90% {
        transform: translate(calc(0% - 5px), calc(0% - 5px));
    }

    100% {
        transform: translate(0%, 0%);
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple-animation .3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1000;
}

@keyframes ripple-animation {
    from {
        transform: scale(0);
        opacity: 0.3;
    }

    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes backgroundZoom {
    0% {
        background-size: 100%;
    }

    50% {
        background-size: 75%;
    }

    100% {
        background-size: 100%;
    }
}

.noteDiv {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.note {
    position: absolute;
    font-weight: bold;
    font-size: calc(4px + 1.75vh);
    font-family: sans-serif;
    margin: 0 auto;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    background: radial-gradient(rgba(255,255,255, 0.5), transparent);
    padding: 6px 12px;
    transform: translateY(0);
    animation: floatUpAndFade 3s ease-in-out;
}

@keyframes floatUpAndFade {
    0% {
        opacity: 0;
        transform: translateY(0vh);
        font-size: calc(4px + 3vh);
    }

    25% {
        opacity: 1;
        transform: translateY(-15vh);
        font-size: calc(6px + 4vh);
    }

    100% {
        opacity: 0;
        transform: translateY(-15vh);
        font-size: calc(8px + 6vh);
    }
}