* {
    box-sizing: border-box;  
    border: 1px solid black
}

body {
    margin: 0;
    background-image: url("assets/ai-generated-8806536.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 1000px;
    width: 100%;
    height: 100%;
}

.pop-up {
    display: none;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    transform: translate(-50%, -50%);
    height: 50%;
    width: 50%;
    min-width: 200px;
    min-height: 200px;
    top: 50%;
    left: 50%;
    border-radius: 5%;
    background-color: grey;
}

#header {
    background: linear-gradient(.25turn, black, transparent);
    color: gold
}

#information-container {
    display: flex;
    width: 100vw;
    height: 600px;
    align-items: center;
    justify-content: center;
}

#player-panels, #enemy-panels {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

#initiative-bar {
    width: 100vw;
    height: 200px;
}

#initiative-btn {
    border-radius: 25%;
    position: absolute;
    transform: translate(-100px, 0px);
    left: 50%;
    height: 200px;
    width: 200px;
    background-color: orangered;
    color: black;
    font-weight: bolder;
    font-size: 2.5rem;
    z-index: 2;
}

#initiative-btn:hover {
    background-image: url("assets/fire-298115_640.jpg");
    background-size: cover;
    box-shadow: 0px 0px 10px red;
    text-shadow: -1px 1px 1px goldenrod;
}

.bar {
    height: 50%;
    width: inherit;
}

#player-initiative {
    border-bottom: 5px solid black;
}

#enemy-initiative {
    border-top: 5px solid black;
}

#player-initiative, #enemy-initiative {
    border-left: 30px solid black;
    border-right: 30px solid black;
    position: relative;
}

#player-entry-form, #enemy-entry-form{
    display: none;
}

.minimal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    height: 50px;
    width: auto;
    background-color: grey;
}

.expanded-content {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: grey;
    z-index: 1;
}

#player-card-container, #enemy-card-container {
    height: 95%;
    width: 100%;
    display: flex;
    flex-direction: column;

}

.delete-player, .delete-enemy {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bolder;
    background-color: red;
    height: 100%;
    width: 50px;
}

.delete-player:hover, .delete-enemy:hover {
    background-color: black;
    color: red;
}

.btn-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 35px;
}

.btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.btn {
    height: 20px;
    width: 100px;
    background-color: #aaa;
    border-radius: 15px;
}

.btn:hover {
    height: 25px;
    width: 150px;
    font-size: larger;
    box-shadow: 0px 0px 10px orangered;
}

.form {
    height: 80vh;
    width: 80vh;
    overflow: auto;
    z-index: 1;
    top: 0;
    left: 0;
    position: fixed;
    background-color: aquamarine;
}

.submit {
    z-index: 1;
    background-color: black;
    float: right;
}

.close {
    display: none;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    background-color: red;
    color: #aaa;
    float: right;
    font-size: 40px;
    font-weight: bold;
    z-index: 40;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.initiative-marker {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    transform: translate(0px, 50%);
    border-radius: 15%;
    position: absolute;
    top: 50;
}

.initiative-marker:hover {
    background-color: aqua;
}

.player-marker {
    background-color: blue;

}

.enemy-marker {
    background-color: red;
}