/*index.html style*/
#author {
    text-align: center;
    top: 5px;
    color:aliceblue;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.containerStart {
    display: flex; 
    justify-content: center; 
    align-items: center;  
    height: auto;
}
#mainLogo {
    top: 15px;
    width: 400px;
}
#title {
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    top: 350px;
    font-size: 20px;
    font-style: oblique;
    color: aliceblue;
}
#startButton {
    cursor: pointer;
    padding: 10px 20px;
    margin: 15px;
    width: 200px;
    top: 420px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: aliceblue;
    color:#2c215c;
    border-radius: 10px;
    border-color: aliceblue;
    border-width: 10px;
    border-style: dotted; 
    font-size: 25px;
}
.languageButton {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: aliceblue;
    gap: 130px;
    margin: -25px;
    display: flex; 
    justify-content: center; 
    align-items: center;  
}

/*gameRules.html style*/
#rulesTitle {
    font-size: 50px;
    color: aliceblue;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;

}
.containerRules {
    max-width: 600px; 
    width: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center;  
    height: auto;
}
#rules {
    color: aliceblue;
    border-style:dashed;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    top: 55px;
    font-size: 17px;
}
#rulesButton {
    cursor: pointer;
    width: 200px;
    top: 420px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: aliceblue;
    color:#2c215c;
    border-radius: 10px;
    border-color: aliceblue;
    border-width: 10px;
    border-style: dotted; 
    font-size: 25px;
}

/*inGame.html style*/
.inGame { 
    height: 100%; 
    margin: 0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
#answerElement {
    position: fixed;
    top: 345px;
}
#buttonGame {
    position: fixed;
    top: 405px;
    cursor: pointer;
}
#feedback {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:aliceblue;
    position: fixed;
    top: 375px;
}
#displayElement {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:aliceblue;
    position: fixed;
    top: 10px;
}
#timeDisplay {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:aliceblue;
    position: fixed;
    top: 50px;
}
#time {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:aliceblue;
    position: fixed;
    top: 450px;
}
#countryImage {
    max-width: 300px;
    position:fixed;
    top: 100px;
}
#gameFinished { 
    position: fixed; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -65%); 
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 70px; 
    width: auto; 
    height: auto; 
    overflow: auto; 
}
.popUpItems { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    flex-direction: column;
    background-color: aliceblue; 
    border: 1px solid #ddd; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8); 
    padding: 20px; 
    text-align: center; 
    color: #2c215c; 
    margin: 10px 0;
    max-width: 300px;
    width: 100%;
  }
  #tryAgain { 
    position: fixed; 
    left: 50%; 
    top: 50%; 
    transform: translate(-50%, -50%); 
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 70px; 
    width: auto; 
    height: auto; 
    overflow: auto; 
}
  #toCharts {
    display: flex;
    cursor: pointer;
    background-color:#2c215c;
    color:aliceblue;
    border: none;
    font-size: 20px;
    position:sticky;
    left: 7%;
 }

/*Charts style section*/
#categories {
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    background-color: aliceblue;
    color:#2c215c;
    margin-left: auto; 
    margin-right: auto;
}
#chart {
    width: 500px; 
    margin-left: auto; 
    margin-right: auto; 
}
.scores {
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    border: 1px solid aliceblue; /* This applies a border to the row */
    color: aliceblue;
    margin-left: auto; 
    margin-right: auto;
}

.scores td {
    border: 1px solid aliceblue;
}
