* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    padding: 20px;
    min-height: 100vh;
    font-family: 'Open Sans', sans-serif;
}

a{
    text-decoration: none;
    color: white;
}

a:visited{
    color: white;
}

.button-container {
    text-align: center;
}

.button-wrapper {
    position: relative;
    width: 300px;
    height: 50px;
    border-radius: 11px;
    box-shadow: 0px 11px 2px #000000;
    cursor: pointer;
    margin-bottom: 25px;
    margin-top: 25px;
    background-color: rgb(237, 80, 80);

}

.battle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bungee', sans-serif;
    font-size: 1.2em;
    color: white;
}


.button-wrapper:active {
    transform: scale(0.95);
}

.popup {
    position: absolute;
    background-color: black;
    padding: 20px;
    border-radius: 5px;
    width: 150px;
    height: 150px;
    pointer-events: none;
}



