:root {
    --primary-color: rgb(134, 3, 3);  
  }

/*
  // POP-UP 
  //hover different colors for left/right

  //HEADER
  // make new header class for search/buttons/title


// RESULTS
//percentage bar showing whos winning (60/40 left is winning, left's bar is across 60% of the screen)
*/

/* Add this to your existing CSS */
.popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    text-align: center;
    padding: 100px;
    max-width: 100%;
    max-height: 100%;
}


.title-container {
    display: flex; /* Add display flex */
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 46px;
    color: green;
    text-align: center;
}

.button-container {
    display: flex; /* Add display flex */
    align-items: center;
    justify-content: space-evenly;
}

.score-container {
    display: flex; /* Add display flex */
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 25px;
}


.image-container {
    display: flex; /* Add display flex */
    justify-content: center;
    justify-content: space-evenly;
}

.left-score {
    font-size: 100px;
    color: blue;
    text-align: center;
    margin-right: 20%;
}

.right-score {
    font-size: 100px;
    color: red;
    text-align: center;
}


.image {
    margin: 10px; 
    align-self: flex-start;
}

.new-button {
    background-color: transparent;
    border: 2px solid #ddd;
    cursor: pointer;
    padding: 50px 100px; /* Increase padding to make the buttons longer */
    color: black; /* Change default text color to black */
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Align button at the top */
    font-size: 40px;
}

.new-button:hover {
    background-color: blue; /* Change to desired hover color for ok-button */
    color:white;
}

.new-button#right-button:hover {
    background-color: red; /* Change to desired hover color for fu-button */
    color:white;
}
 
.second-header-content {
    display: flex; /* Display navigation as an inline block */
    justify-content: space-between;
    align-items: center;
    margin: auto;
    /* background-color: var(--primary-color); */ 
    background-color: black;
    padding: auto;
    font-size: 26px;
    color: white;
    font-weight: bold;
}
.second-header-content a {
    color: white;
    flex-grow: 1; /* Updated */
}

.second-header-content a#fracc {
    text-decoration: none;
}

.second-header-button {
    background-color: transparent;
    cursor: pointer;
    margin: 10px;
    color: #fff;
    transition: background-color 0.3s ease;
    font-size: 20px;
}

.second-header-button#menu-button {
    background-color: white;
    color: black;
    margin-right: 8.5%;
}

.second-header-button#login-button {
    background-color: #007bff;
    color: #fff; 
}
.content {
    text-align: center;
    padding: auto;
}


.subheader {
    font-size: 28px;
}

.link {
    font-size: 24px;
    color: blue;
    text-decoration: underline;
    cursor: pointer; /* Change cursor to pointer on hover */
}
/* Add this to your existing CSS */
.columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align columns' content at the top */
}
/* Add this to your existing CSS */
.column {
    width: calc(50% - 5px); /* Subtract 1px to account for the line's width */
    padding: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding and border in the width */
    font-size: 24px; /* Adjust the font size for the title */
}
