body{
    background-image: url(istockphoto-829436500-612x612.jpg);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}

#welcome{
    position: absolute;
    left: 200px;
    font-family: "Cooper Black";
    font-size: 3em;
    color: #00ffb0;
}
#description{
    position: absolute;
    top: 110px;
    left: 125px;
    font-family: "Cooper Black";
    font-size: 45px;
    color: #09c3ff;
}
#desc{
    position: absolute;
    top: 200px;
    left: 50px;
    font-family: "Cooper Black";
    font-size: 35px;
    border-radius: 10px;
    border: solid black 5px;
    height: 320px;
    padding: 10px;
    color: #ffffff;
}
#playerCount{
    position: absolute;
    top: 270px;
    left: 920px;
    height: 55px;
    border-radius: 20px;
    font-family: "Cooper Black";
    font-size: 2em;
    color: white;
    padding: 5px;
    background-color: black;
}
#continue{
    position: absolute;
    border: none;
    background: none;
    border-radius: 10px;
    font-family: "Cooper Black";
    font-size: 3em;
    left: 900px;
    top: 550px;
    cursor: pointer;
    color: #00ffb0;
}
#continue:hover{
    transform: scale(1.1);
    transition: 0.2s;
}
#one{color: goldenrod}
#two{color: lightblue}
#three{color: red}
#four{color:greenyellow}
#five{color: mediumpurple}

#prepPage, #reportPage{ display: none;}

#container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
}

#container input {
    border-radius: 10px;
    height: 10px;
    padding: 10px;
    border: none;
    font-family: "Cooper Black";
    font-size: 1em;
    background-color: black;
    color: white;
}

#container input::placeholder {
    color: lightgrey;
    font-family: "Cooper Black";
}

#start{
    display: none;
    border: none;
    border-radius: 50px;
    background: none;
    height: 100px;
    color: #00ffb0;
    font-size: 65px;
    font-family: "Cooper Black";
    position: absolute;
    top: 330px;
    left: 950px;
    cursor: pointer;
}

#start:hover {
    transform: scale(1.1);
    transition: 0.1s ease;
}
#nextPlayer{
    border: none;
    border-radius: 50px;
    background: none;
    height: 100px;
    color: #00ffb0;
    font-size: 40px;
    font-family: "Cooper Black";
    position: absolute;
    top: 580px;
    left: 1000px;
    cursor: pointer;
}

#nextPlayer:hover {
    transform: scale(1.1);
    transition: 0.1s ease;
}

#players {
    position: absolute;
    top: 20px;
    left: 840px;
    height: 45px;
    border-radius: 10px;
    font-family: "Cooper Black";
    font-size: 25px;
    color: lightgrey;
    padding: 5px;
    background-color: black;
}
#note{
    position: absolute;
    color: #ffffff;
    top: -5px;
    left: 320px;
    border-radius: 15px;
    border: solid black 5px;
    min-height: 80px;
    min-width: 250px;
    padding: 5px;
    font-family: "Cooper Black";
    font-size: 15px;
    white-space: pre-line;
}
#survivalItems {
    position: absolute;
    font-size: 40px;
    font-family: "Cooper Black";
    top: 130px;
    left: 50px;
    color: white;
    border: none
}

#items {
    position: absolute;
    top: 220px;
    border-radius: 10px;
    font-size: 2em;
    font-family: "Cooper Black";
    padding: 5px;
    height: 300px;
    color: lightgray;
    background-color: black;
}

#backpack {
    position: absolute;
    color: white;
    top: 170px;
    left: 500px;
    border-radius: 15px;
    border: solid black 5px;
    min-height: 340px;
    min-width: 250px;
    padding: 5px;
    font-family: "Cooper Black";
    font-size: 30px;
    white-space: pre-line;
}

#scout {color: azure;}
#soldier {color: lightsteelblue;}
#medic {color: red;}
#intel {color: antiquewhite;}
#raptor {color: mediumpurple;}

#reportPage {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 65vh;
    padding: 40px;
    box-sizing: border-box;
}
#reportText{
    position: absolute;
    top: -30px;
    left: 595px;
    font-family: "Cooper Black";
    font-size: 3em;
    color: #c20000;
}
#report {
    border-radius: 10px;
    border: solid black 5px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.6);
    width: 90%;
    max-width: 1200px;
    min-height: 70vh;
    font-family: "Cooper Black";
    font-size: 20px;
    padding: 20px;
    white-space: pre-line;
    overflow-y: auto;
}
#backToWelcomeInPrepPage{
    border: none;
    border-radius: 50px;
    background: none;
    height: 100px;
    color: #fdff00;
    font-size: 40px;
    font-family: "Cooper Black";
    position: absolute;
    top: 560px;
    left: 10px;
    cursor: pointer;
}
#backToWelcomeInPrepPage:hover {
    transform: scale(1.1);
    transition: 0.1s ease;
}
#backToWelcomeInReportPage {
    border: none;
    border-radius: 50px;
    background: none;
    height: 100px;
    color: #fdff00;
    font-size: 20px;
    font-family: "Cooper Black";
    position: fixed;
    left: 10px;
    bottom: 1px;
    cursor: pointer;
    z-index: 1000;
}

#backToWelcomeInReportPage:hover {
    transform: scale(1.1);
    transition: transform 0.1s ease;
}